aboutbox.pas

来自「电力行业前台收费程序,需要有后台SQL数据库,和电费管理系统配合应用.」· PAS 代码 · 共 33 行

PAS
33
字号
unit AboutBox;

interface

uses
  Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs,
  RXCtrls, StdCtrls, ShellApi;

type
  TFormAbout = class(TForm)
    RxLabel1: TRxLabel;
    RxLabel2: TRxLabel;
    RxLabel3: TRxLabel;
    RxLabelWWW: TRxLabel;
    Button1: TButton;
    procedure RxLabelWWWClick(Sender: TObject);
  private
    { Private declarations }
  public
    { Public declarations }
  end;

implementation

{$R *.DFM}

procedure TFormAbout.RxLabelWWWClick(Sender: TObject);
begin
  ShellExecute(Handle,nil,'www.fuwu.com.cn',nil,nil,SW_SHOW);
end;

end.

⌨️ 快捷键说明

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