monitor.dpr
资源名称:计算机远程监控.rar [点击查看]
上传用户:rickyhu
上传日期:2007-05-27
资源大小:842k
文件大小:1k
源码类别:
控制台编程
开发平台:
Delphi
- ////////////////////////////////////////////////////////////////////////////////
- //
- // 2004 (C) Copyrights Reserved
- // Author:Aureala
- //
- ////////////////////////////////////////////////////////////////////////////////
- program monitor;
- uses
- Forms,
- Main in 'Main.pas' {MainForm},
- Splash in 'Splash.pas' {SplashForm},
- About in 'About.pas' {AboutForm},
- UtilTools in 'UtilTools.pas',
- ShowLog in 'ShowLog.pas' {ShowLogForm};
- {$R *.res}
- begin
- try
- Application.Initialize;
- Application.Title := 'SPYHOLE V2.0 计算机远程监控系统';
- SplashForm:=TSplashForm.Create(Application);
- SplashForm.FormStyle:=fsStayOnTop;
- SplashForm.Show;
- Application.CreateForm(TMainForm, MainForm);
- Application.Run;
- except
- Application.Terminate;
- end;
- end.