home *** CD-ROM | disk | FTP | other *** search
/ PC Expert 29 / Pce29cd.iso / RUNIMAGE / DELPHI40 / DEMOS / RESXPLOR / RESXPLOR.DPR < prev    next >
Text File  |  1998-06-16  |  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.