vb如何和网页链接
发布网友
发布时间:2023-01-02 13:13
我来回答
共5个回答
热心网友
时间:2023-10-09 15:40
方法一)用Shell函数执行一个可执行文件explorer.exe来打开网页。
Shell "explorer.exe http://www.baidu.com"
方法二)使用WebBrowser直接建立浏览器。
WebBrowser1.Navigate "http://www.baidu.com"
热心网友
时间:2023-10-09 15:40
标准格式应该是
shell "你想用来打开网页的浏览器的路径+浏览器的exe文件" & " " & "你要打开的网页的名字"
例如我要用世纪之窗打开 百fdsa度
Shell "D:\Program Files\TheWorld 2.0\TheWorld.exe http://www.baidu.com"
注意中间有个空格的
热心网友
时间:2023-10-09 15:41
Private Sub Command1_Click()
Shell ("rundll32 url.dll FileProtocolHandler http://www.baidu.com")
End Sub
Private Sub Command1_Click()
Shell ("rundll32 url.dll FileProtocolHandler c:\1.html")
End Sub
一个是打开网站的一个是打开本地磁盘html文件的
参考:
http://catrun.cn/article.asp?id=26
热心网友
时间:2023-10-09 15:42
shell "explorer.exe " & "你的网页"
热心网友
时间:2023-10-09 15:42
试一下用shell