CoolService.dpr
上传用户:hylc_2004
上传日期:2014-01-23
资源大小:46800k
文件大小:0k
源码类别:

Delphi控件源码

开发平台:

Delphi

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