about.pas

来自「影院售票系统完整源码」· PAS 代码 · 共 62 行

PAS
62
字号
{------------------------------------------------------------------------------

              MayHua Client--

      Copyright (c) 2002,05 MayHua Corporation

        *Author     :  Zhang Xiao Feng

        *LastUpdated:  2002-6-19

        *SourceName :  about.pas

--------------------------------------------------------------------------------}
unit about;

interface

uses
  Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
  Dialogs, StdCtrls, ExtCtrls,ShellAPI, jpeg, CyberXPMenu;

type
  TForm_about = class(TForm)
    Bevel1: TBevel;
    Label1: TLabel;
    Label2: TLabel;
    lbHomeHS: TLabel;
    lbVer: TLabel;
    Image: TImage;
    btnOK: TButton;
    CyberXPMenu1: TCyberXPMenu;
    procedure FormCreate(Sender: TObject);
    procedure lbHomeHSClick(Sender: TObject);
  private
    { Private declarations }
  public
    { Public declarations }
  end;

var
  Form_about: TForm_about;

implementation

uses

  unit_PublicInfo;
  
{$R *.dfm}

procedure TForm_about.FormCreate(Sender: TObject);
begin
  lbVer.Caption := lbVer.Caption + GetFileVersion(ParamStr(0));
end;

procedure TForm_about.lbHomeHSClick(Sender: TObject);
begin
  ShellExecute(Handle, 'open', 'http://www.chinaecai.com', nil, nil, SW_MAXIMIZE);
end;

end.

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?