uabout.pas
来自「局域网多线程文件传送delphi源码程序」· PAS 代码 · 共 56 行
PAS
56 行
unit uAbout;
interface
uses
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
Dialogs, StdCtrls, jpeg, ExtCtrls;
type
TAbout = class(TForm)
Image1: TImage;
Label4: TLabel;
Label5: TLabel;
Label1: TLabel;
Label8: TLabel;
procedure Label4Click(Sender: TObject);
procedure Label5Click(Sender: TObject);
procedure Label3Click(Sender: TObject);
private
{ Private declarations }
public
{ Public declarations }
end;
var
About: TAbout;
implementation
{$R *.dfm}
uses
shellapi;
procedure TAbout.Label4Click(Sender: TObject);
var
email : string;
begin
email:=(Sender as TLabel).caption;
ShellExecute(handle,nil,PChar('mailto:'+email),nil,nil, SW_SHOWNORMAL);
end;
procedure TAbout.Label5Click(Sender: TObject);
begin
ShellExecute(handle,nil,PChar('mailto:hxb_leiyuan2000@163.net'),nil,nil, SW_SHOWNORMAL);
end;
procedure TAbout.Label3Click(Sender: TObject);
begin
ShellExecute(handle,nil,PChar('http://codecentral.borland.com/codecentral/ccweb.exe/author?authorid=222668'),nil,nil, SW_SHOWNORMAL);
end;
end.
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?