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

  1. program ResXplor;
  2.  
  3. uses
  4.   Forms,
  5.   ExeImage,
  6.   RXMain in 'RXMain.pas' {MainForm};
  7.  
  8. {$R *.RES}
  9.  
  10. begin
  11.   Application.Title := 'Resource Explorer';
  12.   Application.CreateForm(TMainForm, MainForm);
  13.   Application.Run;
  14. end.
  15.