home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC Expert 29
/
Pce29cd.iso
/
RUNIMAGE
/
DELPHI40
/
DEMOS
/
RESXPLOR
/
RESXPLOR.DPR
< prev
next >
Wrap
Text File
|
1998-06-16
|
230b
|
15 lines
program ResXplor;
uses
Forms,
ExeImage,
RXMain in 'RXMain.pas' {MainForm};
{$R *.RES}
begin
Application.Title := 'Resource Explorer';
Application.CreateForm(TMainForm, MainForm);
Application.Run;
end.