我想启动一个网络浏览器,从我的C ++ / CLI .net程序访问谷歌地图中的某个位置。启动用户当前默认浏览器的最简单方法是什么?
答案 0 :(得分:1)
我从stackoverflow中的另一篇文章中得到了它
Process.Start(
new ProcessStartInfo()
{
FileName = "cmd.exe",
Arguments = "/c start http://www.google.com",
WindowStyle = ProcessWindowStyle.Hidden,
UseShellExecute = false
});
答案 1 :(得分:1)
这是我在一些更广泛的谷歌搜索后找到的简单方法:
System::Diagnostics::Process::Start("http://maps.google.com/");
为所有输入欢呼。
答案 2 :(得分:1)
在.NET上,使用Process.Start。
在VC ++,VB上,使用ShellExecute。