home *** CD-ROM | disk | FTP | other *** search
/ Chip 2004 February / Chip_2004-02_cd1.bin / program / delphi / navody / d56 / ec1vr2.exe / #setuppath# / Delphi / Prntext / Prntext.dpr < prev    next >
Encoding:
Text File  |  2003-12-09  |  355 b   |  18 lines

  1. program Prntext;
  2.  
  3. uses
  4.   Forms,
  5.   Rep in 'Rep.pas' {RepForm},
  6.   About in 'About.pas' {AboutBox},
  7.   Main in 'Main.pas' {MainForm};
  8.  
  9. {$R *.RES}
  10.  
  11. begin
  12.   Application.Initialize;
  13.   Application.CreateForm(TMainForm, MainForm);
  14.   Application.CreateForm(TRepForm, RepForm);
  15.   Application.CreateForm(TAboutBox, AboutBox);
  16.   Application.Run;
  17. end.
  18.