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

  1. program Dbbrowsr;
  2.  
  3. uses
  4.   Forms,
  5.   Dbmain in 'DBMAIN.PAS' {DbMainForm},
  6.   Dbbrowse in 'DBBROWSE.PAS' {DbBrowseForm},
  7.   Dbtable in 'DBTABLE.PAS' {TableViewForm},
  8.   Dbsql in 'DBSQL.PAS' {SQLForm},
  9.   Dbsqlvew in 'DBSQLVEW.PAS' {SQLViewForm},
  10.   Dbform in 'DBFORM.PAS',
  11.   About in 'ABOUT.PAS' {AboutBox},
  12.   Dbexcept in 'DBEXCEPT.PAS' {DbEngineErrorDlg},
  13.   Opendb in 'OPENDB.PAS' {OpenDbDlg};
  14.  
  15. {$R *.RES}
  16.  
  17. begin
  18.   Application.Title := 'Database Browser';
  19.   Application.CreateForm(TDbMainForm, DbMainForm);
  20.   Application.CreateForm(TAboutBox, AboutBox);
  21.   Application.CreateForm(TDbEngineErrorDlg, DbEngineErrorDlg);
  22.   Application.CreateForm(TOpenDbDlg, OpenDbDlg);
  23.   Application.Run;
  24. end.
  25.