home *** CD-ROM | disk | FTP | other *** search
/ Chip 2003 January / Chip_2003-01_cd1.bin / zkuste / delphi / kompon / d23456 / COOLTRAY.ZIP / demos / CoolService / CoolService.dpr next >
Text File  |  2002-04-06  |  236b  |  14 lines

  1. program CoolService;
  2.  
  3. uses
  4.   SvcMgr,
  5.   Service in 'Service.pas' {CoolTrayService: TService};
  6.  
  7. {$R *.RES}
  8.  
  9. begin
  10.   Application.Initialize;
  11.   Application.CreateForm(TCoolTrayService, CoolTrayService);
  12.   Application.Run;
  13. end.
  14.