home *** CD-ROM | disk | FTP | other *** search
/ DOS/V Power Report 1997 August / VPR9708A.ISO / D3TRIAL / INSTALL / DATA.Z / TEXTMAIN.PAS < prev    next >
Pascal/Delphi Source File  |  1997-04-24  |  686b  |  33 lines

  1. unit TextMain;
  2.  
  3. { This project demonstrates a custom TDataSet implementation.
  4.   See TextData.Pas for more info.  You will need to compile and
  5.   install TextPKG.DPK before using this sample. }
  6.  
  7. interface
  8.  
  9. uses
  10.   Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs,
  11.   TextData, ExtCtrls, DBCtrls, Grids, DBGrids, Db;
  12.  
  13. type
  14.   TTextDataDemoForm = class(TForm)
  15.     DataSource1: TDataSource;
  16.     DBGrid1: TDBGrid;
  17.     DBNavigator1: TDBNavigator;
  18.     TextDataSet1: TTextDataSet;
  19.   private
  20.     { Private declarations }
  21.   public
  22.     { Public declarations }
  23.   end;
  24.  
  25. var
  26.   TextDataDemoForm: TTextDataDemoForm;
  27.  
  28. implementation
  29.  
  30. {$R *.DFM}
  31.  
  32. end.
  33.