aboutsrc.pas

来自「该程序可作为386的接警程序使用」· PAS 代码 · 共 40 行

PAS
40
字号
unit AboutSrc;

interface

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

type
  TFormAbout = class(TForm)
    Image1: TImage;
    Label1: TLabel;
    Label2: TLabel;
    Label3: TLabel;
    Label4: TLabel;
    Label5: TLabel;
    Label6: TLabel;
    procedure Label6Click(Sender: TObject);
  private
    { Private declarations }
  public
    { Public declarations }
  end;

var
  FormAbout: TFormAbout;

implementation

uses
ShellApi;
{$R *.dfm}

procedure TFormAbout.Label6Click(Sender: TObject);
begin
        ShellExecute(Handle, 'open', 'http://www.scdean.com', nil, nil, SW_SHOW);
end;

end.

⌨️ 快捷键说明

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