home *** CD-ROM | disk | FTP | other *** search
- program Viewph;
- uses
- Forms,
- Uimage in 'UIMAGE.PAS' {Form1},
- Ufullscr in 'UFULLSCR.PAS' {FullSlide},
- Uabout in 'UABOUT.PAS' {AboutBox},
- U_p_size in 'U_P_SIZE.PAS' {Printersize};
-
- {$R *.RES}
-
- begin
- Application.CreateForm(TForm1, Form1);
- Application.CreateForm(TFullSlide, FullSlide);
- Application.CreateForm(TAboutBox, AboutBox);
- Application.CreateForm(TPrintersize, Printersize);
- Application.Run;
- end.
-
-
-
-