home *** CD-ROM | disk | FTP | other *** search
/ Computer Music Interacti…pecial Edition 2000 April / cd.iso / pc / PC / maintenance / Techsheduler / data1.cab / Delphi_Demo_1 / testProj.dpr next >
Encoding:
Text File  |  1999-07-27  |  544 b   |  26 lines

  1. {
  2.  Delphi 3,4 Test program for the TechScheduler API.
  3.  
  4.  Requires TKSHDAPI.DLL to be in the Windows or same directory.
  5.  
  6.  This demo can be used without any restrictions and can be
  7.  modified without prior permission. We request that updates
  8.  and bugs be sent to Winutils@aol.com
  9.  
  10.  copyright 1998-99 Dean Software Design
  11.  www.winutils.com
  12. }
  13. program testProj;
  14.  
  15. uses
  16.   Forms,
  17.   testUnit in 'Testunit.pas' {Form1};
  18.  
  19. {$R *.RES}
  20.  
  21. begin
  22.   Application.Initialize;
  23.   Application.CreateForm(TForm1, Form1);
  24.   Application.Run;
  25. end.
  26.