home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 1997 May / Pcwk0597.iso / delphi / imagelib / im_cvrt.dp_ / im_cvrt.dp
Text File  |  1995-10-01  |  398b  |  20 lines

  1. {image conversion utility. }
  2.  
  3. program Im_cvrt;
  4. uses
  5.   Forms,
  6.   Bimage in 'BIMAGE.PAS' {ConvertForm1},
  7.   Ufullscr in 'UFULLSCR.PAS' {FullSlide},
  8.   Uabout in 'UABOUT.PAS' {AboutBox};
  9.  
  10. {$R *.RES}
  11.  
  12. begin
  13.   Application.CreateForm(TConvertForm1, ConvertForm1);
  14.   Application.CreateForm(TFullSlide, FullSlide);
  15.   Application.CreateForm(TAboutBox, AboutBox);
  16.   Application.Run;
  17. end.
  18.  
  19.  
  20.