home *** CD-ROM | disk | FTP | other *** search
/ Visual Basic 4 Power Pack / Visual_Basic4_Power_Pack.bin / vb4files / ilib_vb / viewph.dp_ / viewph.dp
Encoding:
Text File  |  1996-11-20  |  467 b   |  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.