home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC Format Collection 48
/
SENT14D.ISO
/
tech
/
delphi
/
disk15
/
insquery.pak
/
INSQUERY.DPR
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
1995-08-24
|
262 b
|
15 lines
program Insquery;
uses
Forms,
Main in 'MAIN.PAS' {MainForm},
Insform in 'INSFORM.PAS' {InsertForm};
{$R *.RES}
begin
Application.CreateForm(TMainForm, MainForm);
Application.CreateForm(TInsertForm, InsertForm);
Application.Run;
end.