home *** CD-ROM | disk | FTP | other *** search
/ DOS/V Power Report 1996 August / VPR9608A.BIN / del20try / install / data.z / IMAGVIEW.DPR < prev    next >
Text File  |  1996-05-08  |  267b  |  15 lines

  1. program Imagview;
  2.  
  3. uses
  4.   Forms,
  5.   Imagewin in 'IMAGEWIN.PAS' {ImageForm},
  6.   Viewwin in 'VIEWWIN.PAS' {ViewForm};
  7.  
  8. {$R *.RES}
  9.  
  10. begin
  11.   Application.CreateForm(TImageForm, ImageForm);
  12.   Application.CreateForm(TViewForm, ViewForm);
  13.   Application.Run;
  14. end.
  15.