home *** CD-ROM | disk | FTP | other *** search
/ PC Format Collection 48 / SENT14D.ISO / tech / delphi / disk15 / qjoin.pak / MAIN.PAS < prev    next >
Encoding:
Pascal/Delphi Source File  |  1995-08-24  |  303 b   |  23 lines

  1. unit Main;
  2.  
  3. interface
  4.  
  5. uses WinTypes, WinProcs, Classes, Graphics, Forms, Controls, DB, DBGrids,
  6.   DBTables, Grids;
  7.  
  8. type
  9.   TForm1 = class(TForm)
  10.     Query1: TQuery;
  11.     DataSource1: TDataSource;
  12.     DBGrid1: TDBGrid;
  13.   end;
  14.  
  15. var
  16.   Form1: TForm1;
  17.  
  18. implementation
  19.  
  20. {$R *.DFM}
  21.  
  22. end.
  23.