home *** CD-ROM | disk | FTP | other *** search
/ PC Format Collection 48 / SENT14D.ISO / tech / delphi / disk15 / insquery.pak / INSQUERY.DPR < prev    next >
Encoding:
Text File  |  1995-08-24  |  262 b   |  15 lines

  1. program Insquery;
  2.  
  3. uses
  4.   Forms,
  5.   Main in 'MAIN.PAS' {MainForm},
  6.   Insform in 'INSFORM.PAS' {InsertForm};
  7.  
  8. {$R *.RES}
  9.  
  10. begin
  11.   Application.CreateForm(TMainForm, MainForm);
  12.   Application.CreateForm(TInsertForm, InsertForm);
  13.   Application.Run;
  14. end.
  15.