home *** CD-ROM | disk | FTP | other *** search
/ PC Pro 1999 February / DPPCPRO0299.ISO / February / Delphi / Install / DATA.Z / RESXPLOR.DPR < prev    next >
Encoding:
Text File  |  1996-06-11  |  230 b   |  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.