home *** CD-ROM | disk | FTP | other *** search
- program Format;
-
- uses
- Forms,
- Main in 'MAIN.PAS' {SFXFormat},
- About in 'ABOUT.PAS' {AboutBox},
- Register in 'REGISTER.PAS' {RegisterDlg},
- Status in 'STATUS.PAS' {StatusForm},
- BDisk in 'BDISK.PAS';
-
- {$R *.RES}
-
- begin
- Application.Title := 'SFXFormat';
- Application.CreateForm(TSFXFormat, SFXFormat);
- Application.CreateForm(TAboutBox, AboutBox);
- Application.CreateForm(TRegisterDlg, RegisterDlg);
- Application.CreateForm(TStatusForm, StatusForm);
- Application.Run;
- end.
-