Splash.pas
资源名称:计算机远程监控.rar [点击查看]
上传用户:rickyhu
上传日期:2007-05-27
资源大小:842k
文件大小:1k
源码类别:
控制台编程
开发平台:
Delphi
- ////////////////////////////////////////////////////////////////////////////////
- //
- // 2004 (C) Copyrights Reserved
- // Author:Aureala
- //
- ////////////////////////////////////////////////////////////////////////////////
- unit Splash;
- interface
- uses
- Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
- Dialogs, ExtCtrls, jpeg;
- type
- TSplashForm = class(TForm)
- SplashImage: TImage;
- StayTimer: TTimer;
- procedure StayTimerTimer(Sender: TObject);
- private
- { Private declarations }
- public
- { Public declarations }
- end;
- var
- SplashForm: TSplashForm;
- implementation
- {$R *.dfm}
- procedure TSplashForm.StayTimerTimer(Sender: TObject);
- begin
- Close;
- Release;
- end;
- end.