home *** CD-ROM | disk | FTP | other *** search
/ Delphi Developer's Kit 1996 / Delphi Developer's Kit 1996.iso / power / call32nt / delphi / test32.dpr next >
Encoding:
Text File  |  1995-12-22  |  425 b   |  16 lines

  1. program Test32; {Draws Bezier curves in Win95/WinNT, which is normally impossible in Win16}
  2.                 {Written in Delphi for Windows 1.0         }
  3.                 {By Christian Ghisler, CIS: 100332,1175    }
  4.                 {Released to the public domain June 14,1995}
  5.  
  6. uses
  7.   Forms,
  8.   Testw32 in 'TESTW32.PAS' {Form1};
  9.  
  10. {$R *.RES}
  11.  
  12. begin
  13.   Application.CreateForm(TForm1, Form1);
  14.   Application.Run;
  15. end.
  16.