monitor.dpr
上传用户:rickyhu
上传日期:2007-05-27
资源大小:842k
文件大小:1k
源码类别:

控制台编程

开发平台:

Delphi

  1. ////////////////////////////////////////////////////////////////////////////////
  2. //
  3. // 2004 (C) Copyrights Reserved
  4. // Author:Aureala
  5. //
  6. ////////////////////////////////////////////////////////////////////////////////
  7. program monitor;
  8. uses
  9.   Forms,
  10.   Main in 'Main.pas' {MainForm},
  11.   Splash in 'Splash.pas' {SplashForm},
  12.   About in 'About.pas' {AboutForm},
  13.   UtilTools in 'UtilTools.pas',
  14.   ShowLog in 'ShowLog.pas' {ShowLogForm};
  15. {$R *.res}
  16. begin
  17.   try
  18.     Application.Initialize;
  19.     Application.Title := 'SPYHOLE V2.0 计算机远程监控系统';
  20.     SplashForm:=TSplashForm.Create(Application);
  21.     SplashForm.FormStyle:=fsStayOnTop;
  22.     SplashForm.Show;
  23.     Application.CreateForm(TMainForm, MainForm);
  24.   Application.Run;
  25.   except
  26.     Application.Terminate;
  27.   end;
  28. end.