home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Computerworld 1996 March
/
Computerworld_1996-03_cd.bin
/
idg_cd3
/
utility
/
applau13
/
splash.pas
< prev
next >
Wrap
Pascal/Delphi Source File
|
1996-02-14
|
669b
|
39 lines
unit Splash;
interface
uses
SysUtils, WinTypes, WinProcs, Messages, Classes, Graphics, Controls,
Forms, Dialogs, ExtCtrls, StdCtrls, Buttons;
type
TSplashForm = class(TForm)
Panel1: TPanel;
Label1: TLabel;
Bevel1: TBevel;
Label2: TLabel;
Label3: TLabel;
procedure FormCreate(Sender: TObject);
private
{ Private declarations }
public
{ Public declarations }
end;
var
SplashForm: TSplashForm;
implementation
uses Main;
{$R *.DFM}
procedure TSplashForm.FormCreate(Sender: TObject);
begin
Label1.Caption := ProgramStr+' '+VersionStr;
Label2.Caption := CopyrightStr;
end;
end.