home *** CD-ROM | disk | FTP | other *** search
/ Delphi 2.0 - Programmer's Utilities Power Pack / Delphi 2.0 Programmer's Utilities Power Pack.iso / e_to_l / imlib201 / viewph.dpr < prev    next >
Encoding:
Text File  |  1996-09-15  |  453 b   |  21 lines

  1. program Viewph;
  2. uses
  3.    Forms,
  4.    Uimage in 'UIMAGE.PAS' {Form1},
  5.    Ufullscr in 'UFULLSCR.PAS' {FullSlide},
  6.    Uabout in 'UABOUT.PAS' {AboutBox},
  7.    U_p_size in 'U_P_SIZE.PAS' {Printersize};
  8.  
  9. {$R *.RES}
  10.  
  11. begin
  12.    Application.CreateForm(TForm1, Form1);
  13.    Application.CreateForm(TFullSlide, FullSlide);
  14.    Application.CreateForm(TAboutBox, AboutBox);
  15.    Application.CreateForm(TPrintersize, Printersize);
  16.    Application.Run;
  17. end.
  18.  
  19.  
  20.  
  21.