home *** CD-ROM | disk | FTP | other *** search
/ Computerworld 1996 March / Computerworld_1996-03_cd.bin / idg_cd3 / utility / applau13 / splash.pas < prev    next >
Pascal/Delphi Source File  |  1996-02-14  |  669b  |  39 lines

  1. unit Splash;
  2.  
  3. interface
  4.  
  5. uses
  6.   SysUtils, WinTypes, WinProcs, Messages, Classes, Graphics, Controls,
  7.   Forms, Dialogs, ExtCtrls, StdCtrls, Buttons;
  8.  
  9. type
  10.   TSplashForm = class(TForm)
  11.     Panel1: TPanel;
  12.     Label1: TLabel;
  13.     Bevel1: TBevel;
  14.     Label2: TLabel;
  15.     Label3: TLabel;
  16.     procedure FormCreate(Sender: TObject);
  17.   private
  18.     { Private declarations }
  19.   public
  20.     { Public declarations }
  21.   end;
  22.  
  23. var
  24.   SplashForm: TSplashForm;
  25.  
  26. implementation
  27.  
  28. uses Main;
  29.  
  30. {$R *.DFM}
  31.  
  32. procedure TSplashForm.FormCreate(Sender: TObject);
  33. begin
  34.   Label1.Caption := ProgramStr+' '+VersionStr;
  35.   Label2.Caption := CopyrightStr;
  36. end;
  37.  
  38. end.
  39.