home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 1997 May / Pcwk0597.iso / delphi / imagelib / viewph.dp_ / viewph.dp
Text File  |  1995-08-19  |  467b  |  21 lines

  1. program Viewph;
  2. uses
  3.   Forms,
  4.   Uimage in 'UIMAGE.PAS' {ViewImageForm},
  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(TViewImageForm, ViewImageForm);
  13.   Application.CreateForm(TFullSlide, FullSlide);
  14.   Application.CreateForm(TAboutBox, AboutBox);
  15.   Application.CreateForm(TPrintersize, Printersize);
  16.   Application.Run;
  17. end.
  18.  
  19.  
  20.  
  21.