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

控制台编程

开发平台:

Delphi

  1. ////////////////////////////////////////////////////////////////////////////////
  2. //
  3. // 2004 (C) Copyrights Reserved
  4. // Author:Aureala
  5. //
  6. ////////////////////////////////////////////////////////////////////////////////
  7. unit Splash;
  8. interface
  9. uses
  10.   Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
  11.   Dialogs, ExtCtrls, jpeg;
  12. type
  13.   TSplashForm = class(TForm)
  14.     SplashImage: TImage;
  15.     StayTimer: TTimer;
  16.     procedure StayTimerTimer(Sender: TObject);
  17.   private
  18.     { Private declarations }
  19.   public
  20.     { Public declarations }
  21.   end;
  22. var
  23.   SplashForm: TSplashForm;
  24. implementation
  25. {$R *.dfm}
  26. procedure TSplashForm.StayTimerTimer(Sender: TObject);
  27. begin
  28.   Close;
  29.   Release;
  30. end;
  31. end.