home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 1998 April A / Pcwk4a98.iso / PROGRAM / DELPHI16 / Format / FORMAT.DPR < prev    next >
Text File  |  1995-05-28  |  506b  |  21 lines

  1. program Format;
  2.  
  3. uses
  4.   Forms,
  5.   Main in 'MAIN.PAS' {SFXFormat},
  6.   About in 'ABOUT.PAS' {AboutBox},
  7.   Register in 'REGISTER.PAS' {RegisterDlg},
  8.   Status in 'STATUS.PAS' {StatusForm},
  9.   BDisk in 'BDISK.PAS';
  10.  
  11. {$R *.RES}
  12.  
  13. begin
  14.   Application.Title := 'SFXFormat';
  15.   Application.CreateForm(TSFXFormat, SFXFormat);
  16.   Application.CreateForm(TAboutBox, AboutBox);
  17.   Application.CreateForm(TRegisterDlg, RegisterDlg);
  18.   Application.CreateForm(TStatusForm, StatusForm);
  19.   Application.Run;
  20. end.
  21.