home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / sibdemo3.zip / SAMPLES.DAT / SAMPLES / RESXPLOR / RESXPLOR.PAS < prev    next >
Pascal/Delphi Source File  |  1997-08-17  |  227b  |  14 lines

  1. Program ResXPlor;
  2.  
  3. Uses          
  4.   Forms, Graphics, RxMain, AboutWin;
  5.  
  6. {$r ResXPlor.scu}
  7.  
  8. Begin
  9.   Application.Create;
  10.   Application.CreateForm (TMainForm, MainForm);
  11.   Application.Run;
  12.   Application.Destroy;
  13. End.
  14.