fabautpas.pas

来自「This delphi 7 source code have a functio」· PAS 代码 · 共 41 行

PAS
41
字号
unit FAbautpas;

interface

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

type
  TfAbout = class(TForm)
    Image1: TImage;
    SpeedButton1: TSpeedButton;
    SpeedButton2: TSpeedButton;
    Label1: TLabel;
    procedure SpeedButton2Click(Sender: TObject);
    procedure SpeedButton1Click(Sender: TObject);
  private
    { Private declarations }
  public
    { Public declarations }
  end;

var
  fAbout: TfAbout;

implementation

{$R *.dfm}

procedure TfAbout.SpeedButton2Click(Sender: TObject);
begin
        Close;
end;

procedure TfAbout.SpeedButton1Click(Sender: TObject);
begin
        ShellExecute(Handle, Nil, 'http://www.friendster.com/bowox', Nil, Nil, SW_SHOWMAXIMIZED);
end;

end.

⌨️ 快捷键说明

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