【发布时间】:2012-06-01 11:45:25
【问题描述】:
我正在制作一个桌面搜索应用程序。我需要一种将网络浏览器目标设置为 Google Chrome 的方法。即,如果有人单击我应用中的按钮,它将使用网站而不是 Internet Explorer 打开 Chrome。
【问题讨论】:
标签: vb.net internet-explorer google-chrome
我正在制作一个桌面搜索应用程序。我需要一种将网络浏览器目标设置为 Google Chrome 的方法。即,如果有人单击我应用中的按钮,它将使用网站而不是 Internet Explorer 打开 Chrome。
【问题讨论】:
标签: vb.net internet-explorer google-chrome
以 url 作为第一个参数运行 chrome exe
chrome.exe xkcd.com
比如……
Process.Start("pathToChrome\\chrome.exe", "xkcd.com")
【讨论】: