12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- unit Splash;
- interface
- uses
- Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
- Dialogs, StdCtrls, ExtCtrls, jpeg, JvGIF;
- type
- TfrmSplash = class(TForm)
- imlLua: TImage;
- Image1: TImage;
- Image2: TImage;
- Label3: TLabel;
- lblVersion: TLabel;
- Label5: TLabel;
- Label6: TLabel;
- Label7: TLabel;
- Label8: TLabel;
- Label1: TLabel;
- shpBorder: TShape;
- procedure FormShow(Sender: TObject);
- private
- { Private declarations }
- public
- { Public declarations }
- end;
- var
- frmSplash: TfrmSplash;
- implementation
- uses Main, Misc;
- {$R *.dfm}
- procedure TfrmSplash.FormShow(Sender: TObject);
- begin
- lblVersion.Caption := TCaption(GetFileVersion(PChar(Application.ExeName)));
- end;
- end.
|