home *** CD-ROM | disk | FTP | other *** search
- program Demo;
-
- uses
- Forms,
- Main in 'MAIN.PAS' {frmMain},
- MSComm in 'MSCOMM.PAS',
- Config in 'CONFIG.PAS' {frmSettings},
- About in 'ABOUT.PAS' {frmAbout};
-
- {$R *.RES}
-
- begin
- Application.CreateForm(TfrmMain, frmMain);
- Application.CreateForm(TfrmSettings, frmSettings);
- Application.CreateForm(TfrmAbout, frmAbout);
- Application.Run;
- end.
-