⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 fabautpas.pas

📁 This delphi 7 source code have a function to send SMS trough computer with serial communication. You
💻 PAS
字号:
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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -