home *** CD-ROM | disk | FTP | other *** search
/ PC Plus SuperCD (UK) 2000 March / pcp161b.iso / full / delphi / INFO / EXTRAS / FIF / TEST / IMGVIEW.DPR < prev    next >
Encoding:
Text File  |  1997-03-13  |  301 b   |  17 lines

  1. program ImgView;
  2.  
  3. uses
  4.   Forms,
  5.   unit1 in 'unit1.pas' {ImgViewForm},
  6.   fif in '..\Fif.pas',
  7.   fifdlls in '..\Fifdlls.pas';
  8.  
  9. {$R *.RES}
  10.  
  11. begin
  12.   Application.Initialize;
  13.   Application.Title := 'Image Viewer';
  14.   Application.CreateForm(TImgViewForm, ImgViewForm);
  15.   Application.Run;
  16. end.
  17.