home *** CD-ROM | disk | FTP | other *** search
/ Delphi 4 Bible / Delphi_4_Bible_Tom_Swan_IDG_Books_1998.iso / source / SQLPLAY / Sqlplay.dpr < prev    next >
Text File  |  1998-01-21  |  249b  |  15 lines

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