home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC Format Collection 48
/
SENT14D.ISO
/
tech
/
delphi
/
disk15
/
qjoin.pak
/
MAIN.PAS
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Pascal/Delphi Source File
|
1995-08-24
|
303 b
|
23 lines
unit Main;
interface
uses WinTypes, WinProcs, Classes, Graphics, Forms, Controls, DB, DBGrids,
DBTables, Grids;
type
TForm1 = class(TForm)
Query1: TQuery;
DataSource1: TDataSource;
DBGrid1: TDBGrid;
end;
var
Form1: TForm1;
implementation
{$R *.DFM}
end.