Last change
on this file since 840 was 830, checked in by Kevin Toppenberg, 14 years ago |
Upgrading to version 27
|
File size:
907 bytes
|
Rev | Line | |
---|
[456] | 1 | unit fSplash;
|
---|
| 2 |
|
---|
| 3 | interface
|
---|
| 4 |
|
---|
| 5 | uses
|
---|
| 6 | Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs,
|
---|
[830] | 7 | ExtCtrls, StdCtrls, fBase508Form, VA508AccessibilityManager;
|
---|
[456] | 8 |
|
---|
| 9 | type
|
---|
[830] | 10 | TfrmSplash = class(TfrmBase508Form)
|
---|
| 11 | pnlMain: TPanel;
|
---|
[456] | 12 | lblVersion: TStaticText;
|
---|
| 13 | lblCopyright: TStaticText;
|
---|
[830] | 14 | pnlImage: TPanel;
|
---|
[456] | 15 | Image1: TImage;
|
---|
| 16 | Memo1: TMemo;
|
---|
[830] | 17 | lblSplash: TStaticText;
|
---|
[456] | 18 | procedure FormCreate(Sender: TObject);
|
---|
| 19 | private
|
---|
| 20 | { Private declarations }
|
---|
| 21 | public
|
---|
| 22 | { Public declarations }
|
---|
| 23 | end;
|
---|
| 24 |
|
---|
| 25 | var
|
---|
| 26 | frmSplash: TfrmSplash;
|
---|
| 27 |
|
---|
| 28 | implementation
|
---|
| 29 |
|
---|
| 30 | {$R *.DFM}
|
---|
| 31 |
|
---|
[830] | 32 | uses VAUtils;
|
---|
[456] | 33 |
|
---|
| 34 | procedure TfrmSplash.FormCreate(Sender: TObject);
|
---|
| 35 | begin
|
---|
| 36 | lblVersion.Caption := 'version ' +
|
---|
| 37 | FileVersionValue(Application.ExeName, FILE_VER_FILEVERSION);
|
---|
[830] | 38 | lblSplash.Caption := lblSplash.Caption + ' ' + lblVersion.Caption;
|
---|
| 39 | lblSplash.Invalidate;
|
---|
[456] | 40 | end;
|
---|
| 41 |
|
---|
| 42 | end.
|
---|
Note:
See
TracBrowser
for help on using the repository browser.