home *** CD-ROM | disk | FTP | other *** search
/ Delphi 4 Bible / Delphi_4_Bible_Tom_Swan_IDG_Books_1998.iso / source / TABS / Tabs.dpr < prev    next >
Text File  |  1998-02-17  |  427b  |  20 lines

  1. program Tabs;
  2.  
  3. uses
  4.   Forms,
  5.   Main in 'MAIN.PAS' {MainForm},
  6.   About in 'ABOUT.PAS' {AboutForm},
  7.   Options in 'OPTIONS.PAS' {OptionsDialog},
  8.   Tabsunit in 'TABSUNIT.PAS',
  9.   Inidata in '..\Inidata\Inidata.pas';
  10.  
  11. {$R *.RES}
  12.  
  13. begin
  14.   Application.CreateForm(TMainForm, MainForm);
  15.   Application.CreateForm(TAboutForm, AboutForm);
  16.   Application.CreateForm(TOptionsDialog, OptionsDialog);
  17.   Application.Run;
  18. end.
  19.  
  20.