home *** CD-ROM | disk | FTP | other *** search
/ PC Pro 1999 February / DPPCPRO0299.ISO / February / Delphi / Install / DATA.Z / SPLASH.PAS < prev    next >
Encoding:
Pascal/Delphi Source File  |  1996-06-11  |  361 b   |  26 lines

  1. unit Splash;
  2.  
  3. interface
  4.  
  5. uses
  6.   SysUtils, Windows, Messages, Classes, Graphics, Controls,
  7.   Forms, Dialogs, StdCtrls, ExtCtrls;
  8.  
  9. type
  10.   TSplashForm = class(TForm)
  11.     Panel1: TPanel;
  12.     Label3: TLabel;
  13.     Bevel1: TBevel;
  14.     Label1: TLabel;
  15.     Image1: TImage;
  16.   end;
  17.  
  18. var
  19.   SplashForm: TSplashForm;
  20.  
  21. implementation
  22.  
  23. {$R *.DFM}
  24.  
  25. end.
  26.