Ignore:
Timestamp:
Jul 7, 2010, 4:51:54 PM (14 years ago)
Author:
Kevin Toppenberg
Message:

Upgrading to version 27

File:
1 edited

Legend:

Unmodified
Added
Removed
  • cprs/trunk/CPRS-Chart/fSplash.pas

    r456 r830  
    55uses
    66  Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs,
    7   ExtCtrls, StdCtrls;
     7  ExtCtrls, StdCtrls, fBase508Form, VA508AccessibilityManager;
    88
    99type
    10   TfrmSplash = class(TForm)
    11     Panel1: TPanel;
    12     lblSplash: TStaticText;
     10  TfrmSplash = class(TfrmBase508Form)
     11    pnlMain: TPanel;
    1312    lblVersion: TStaticText;
    1413    lblCopyright: TStaticText;
    15     Panel2: TPanel;
     14    pnlImage: TPanel;
    1615    Image1: TImage;
    1716    Memo1: TMemo;
     17    lblSplash: TStaticText;
    1818    procedure FormCreate(Sender: TObject);
    1919  private
     
    3030{$R *.DFM}
    3131
    32 uses ORSystem;
     32uses VAUtils;
    3333
    3434procedure TfrmSplash.FormCreate(Sender: TObject);
     
    3636  lblVersion.Caption := 'version ' +
    3737                        FileVersionValue(Application.ExeName, FILE_VER_FILEVERSION);
     38  lblSplash.Caption := lblSplash.Caption + ' ' + lblVersion.Caption;
     39  lblSplash.Invalidate;
    3840end;
    3941
Note: See TracChangeset for help on using the changeset viewer.