Z zhaoshuming Unregistered / Unconfirmed GUEST, unregistred user! 2005-04-07 #1 小弟刚学,不知道如何写打开一个网址的代码?就像写asp里的<a href=""></a>超链接一样能打开一个网址。
Z zhaoshuming Unregistered / Unconfirmed GUEST, unregistred user! 2005-04-07 #2 小弟刚学,不知道如何写打开一个网址的代码?就像写asp里的<a href=""></a>超链接一样能打开一个网址。
C coolfishs Unregistered / Unconfirmed GUEST, unregistred user! 2005-04-08 #3 在uses那里引用 shellapi,然后在单击按钮里输入: ShellExecute(handle,'open',pchar('http://www.delphibbs.com'),nil,nil,SW_SHOW);
在uses那里引用 shellapi,然后在单击按钮里输入: ShellExecute(handle,'open',pchar('http://www.delphibbs.com'),nil,nil,SW_SHOW);
D dedema Unregistered / Unconfirmed GUEST, unregistred user! 2005-04-08 #4 function OpenIE(const URL:string):Variant; begin Result:= CreateOLEObject('InternetExplorer.Application'); Result.Visible := True; Result.Navigate(URL); end;
function OpenIE(const URL:string):Variant; begin Result:= CreateOLEObject('InternetExplorer.Application'); Result.Visible := True; Result.Navigate(URL); end;
W wjames Unregistered / Unconfirmed GUEST, unregistred user! 2005-04-08 #6 在uses那里引用 shellapi,然后在单击按钮里输入: ShellExecute(handle,'open',pchar('http://www.delphibbs.com'),nil,nil,SW_SHOW); 这个最简单实用
在uses那里引用 shellapi,然后在单击按钮里输入: ShellExecute(handle,'open',pchar('http://www.delphibbs.com'),nil,nil,SW_SHOW); 这个最简单实用