使用IE打开:
ShellExecute(NULL, _T("open"), _T("IExplore.exe"), _T("http://..."), NULL, SW_SHOW);
使用火狐打开:
ShellExecute(NULL, _T("open"), _T("firefox.exe"), _T("http://..."), NULL, SW_SHOW);
使用默认浏览器打开:
ShellExecute(NULL, _T("open"), _T("http://..."), NULL, NULL, SW_SHOW);