系统相关
首页 > 系统相关> > VC 使用IE、火狐或默认浏览器打开网页ShellExecute

VC 使用IE、火狐或默认浏览器打开网页ShellExecute

作者:互联网

使用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);

标签:...,VC,SHOW,SW,火狐,ShellExecute,NULL,open
来源: https://blog.csdn.net/qq_1283679500/article/details/118720575