home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / sibyl_cw.zip / CW_Test / CW_Test.PAS next >
Pascal/Delphi Source File  |  1998-02-15  |  199b  |  14 lines

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