首先,你应该在前面uses 中加入:shellapi
然后,按扭代码如下:
procedure TForm1.N23Click(Sender: TObject);
begin
shellexecute(handle,nil,Pchar('http://www.zz.ha.cn'),nil,nil,sw_shownormal);
end;
如果你想给你加入的是email地址,则如下:
procedure TForm1.Email1Click(Sender: TObject);
begin
ShellExecute(handle,nil,pchar('mailto:muzilg@tom.com'),nil,nil,sw_ShowNormal);
end;
不行的话给我联系。