求教实现超连接(shellexecute)的使用方法!(100分)

  • 主题发起人 主题发起人 痞子兵
  • 开始时间 开始时间

痞子兵

Unregistered / Unconfirmed
GUEST, unregistred user!
怎么实现超连接的?例如:点击一个e-mail地址就会打开outlook的。我记得是用shellexecute但是想不起怎么定义的了!<br>请各位帮忙!就是给个例子也行呀![:(]
 
shellexecute(0,nil,'j_qw_cn@sina.com',nil....);
 
use<br>&nbsp; shellapi;<br><br><br>look help in shellapi.pas for shellexecute()
 
给个简单的函数,或许你就更明白了。<br>//执行外部程序<br>Procedure ShellOpen(const s: string);<br>begin<br>&nbsp; ShellExecute(0, 'Open', PChar(s), Nil, Nil, SW_SHOWNORMAL);<br>end;<br><br>具体的参数的含义请查看帮助文件。
 
ShellExecute(handle, 'open',PChar('kunmeng@sina.com'),nil, nil, sw_ShowNormal);
 
ShellExecute(handle,'open','http://www.jxit.com.cn/devecom/coolbaby',nil,nil,SW_MAXIMIZE);<br>
 
多人接受答案了。
 
后退
顶部