home *** CD-ROM | disk | FTP | other *** search
/ Computerworld 1996 March / Computerworld_1996-03_cd.bin / idg_cd3 / aplikace / office / ccopier1 / source / copier.dpr next >
Encoding:
Text File  |  1996-02-14  |  386 b   |  18 lines

  1. program Copier;
  2.  
  3. uses
  4.   Forms,
  5.   Scmain in 'SCMAIN.PAS' {Form1},
  6.   Scoptio in 'SCOPTIO.PAS' {PaperSettings},
  7.   Scabout in 'SCABOUT.PAS' {AboutBox};
  8.  
  9. {$R *.RES}
  10.  
  11. begin
  12.   Application.Title := 'Copier';
  13.   Application.CreateForm(TForm1, Form1);
  14.   Application.CreateForm(TPaperSettings, PaperSettings);
  15.   Application.CreateForm(TAboutBox, AboutBox);
  16.   Application.Run;
  17. end.
  18.