home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 11 Util / 11-Util.zip / runonce.zip / RO_Test / RO_Test.PAS next >
Pascal/Delphi Source File  |  1998-02-21  |  207b  |  14 lines

  1. Program RO_Test;
  2.  
  3. Uses
  4.   Forms, Graphics, RO_Win;
  5.  
  6. {$r RO_Test.SCU}
  7.  
  8. Begin
  9.   Application.Create;
  10.   Application.CreateForm (TROTestWin, ROTestWin);
  11.   Application.Run;
  12.   Application.Destroy;
  13. End.
  14.