home *** CD-ROM | disk | FTP | other *** search
- program Copier;
-
- uses
- Forms,
- Scmain in 'SCMAIN.PAS' {Form1},
- Scoptio in 'SCOPTIO.PAS' {PaperSettings},
- Scabout in 'SCABOUT.PAS' {AboutBox};
-
- {$R *.RES}
-
- begin
- Application.Title := 'Copier';
- Application.CreateForm(TForm1, Form1);
- Application.CreateForm(TPaperSettings, PaperSettings);
- Application.CreateForm(TAboutBox, AboutBox);
- Application.Run;
- end.
-