我花了过去 3 小时试图找到解决方案,但没有得到太多。有些很接近,但对我有用。(Process.Start 或 shell 对我不起作用,因为我希望特定网站中的所有超链接都在默认浏览器而不是 IE 中打开。下面是我正在使用的代码。
提前致谢。
Try
If IsConnectionAvailable("http://google.com") = True Then
MapBrowser.Navigate("http://localhost")
' Me.BackgroundImage = System.Drawing.Image.FromFile(ImgBackground)
Else
MapBrowser.Navigate("http://yahoo.com")
Timer4.Start()
End If
Catch ex As Exception
MsgBox(ex.Message())
End Try