超链接怎么做,求救!(50分)

  • 主题发起人 主题发起人 muzilg
  • 开始时间 开始时间
M

muzilg

Unregistered / Unconfirmed
GUEST, unregistred user!
我想做buttton按纽,按下时打开某个网站,请问怎么做???

谢了
 
ShellExecute(handle,nil,pchar('http://www.delphibbs.com'),nil,nil,sw_ShowNormal);
//'mailto:xxx@abc.com'
前面引用ShellAPI
 
uses shellapi;
shellexecute(handle,nil,Pchar('某个网站'),nil,nil,sw_shownormal)
 
ShellExecute(FrmAbout.Handle,'open',PChar('http://www.sina.com.cn'),'','',SW_SHOWNORMAL);
 
首先,你应该在前面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;
不行的话给我联系。
 
多人接受答案了。
 
后退
顶部