VB 如何调用系统默认程序打开指定网页?

2024-11-22 14:38:43
推荐回答(4个)
回答1:

首先你得找到浏览器的路径。然后在vb中使用如下代码,例如用猎豹浏览器打开指定网页:

Private Sub Command1_Click()
Shell "F:\Program Files\liebao\LBBrowser\liebao.exe 网页绝对地址"
End Sub

路径和地址之间有一空格。

回答2:

Shell "C:\Windows\explorer.exe http://zhidao.baidu.com"
这里用了Windows自带的运行程序(就是Windows徽标键+R出现的那个程序),在这个程序里面输入网址(URL)可以自动用默认浏览器来打开。

回答3:

Private Declare Function ShellExecute Lib "shell32.dll" Alias "ShellExecuteA" (ByVal hwnd As Long, ByVal lpOperation As String, ByVal lpFile As String, ByVal lpParameters As String, ByVal lpDirectory As String, ByVal nShowCmd As Long) As Long
Private Sub Command1_Click()
ShellExecute 0, "open", "http://zhidao.baidu.com", 0, 0, 1
End Sub

回答4:

Process.Start("www.baidu.com"),即可由默认浏览器打开百度。.NET 的