?? aboutp.~pas
字號:
unit aboutp;
interface
uses
Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs,
StdCtrls;
type
Taboutform = class(TForm)
Label1: TLabel;
Label2: TLabel;
Label3: TLabel;
Label4: TLabel;
procedure Label4Click(Sender: TObject);
private
{ Private declarations }
public
{ Public declarations }
end;
var
aboutform: Taboutform;
implementation
uses SHELLAPI;
{$R *.DFM}
procedure Taboutform.Label4Click(Sender: TObject);
var st:array[0..255] of char;
begin
ShellExecute(Handle,'open',StrPCopy(St,Label4.Caption),nil,nil,SW_SHOW);
end;
end.
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -