#include <shellapi.h>
#include <windows.h>
main()
{
ShellExecute(NULL, _T(“open”), _T(“explorer.exe”), _T(“http://www.baidu.com”), NULL, SW_SHOW);
}
本人想用VC编写一个访问网页的程序,以上是根据各贴吧论坛人们说的写出来的,请教大家还要怎么写,才能实现?就是用默认浏览器访问百度,最好能有完整的代码,在此谢过大家了!
#include <windows.h>
main()
{
ShellExecute(NULL, _T(“open”), _T(“explorer.exe”), _T(“http://www.baidu.com”), NULL, SW_SHOW);
}
本人想用VC编写一个访问网页的程序,以上是根据各贴吧论坛人们说的写出来的,请教大家还要怎么写,才能实现?就是用默认浏览器访问百度,最好能有完整的代码,在此谢过大家了!
解决方案
20
#include <windows.h> #include <shellapi.h> int main() { ShellExecute(NULL, _T("open"), _T("explorer.exe"), _T("http://www.baidu.com"), NULL, SW_SHOW); return 0; }
亲测可用
20
ShellExecute(NULL, “open”, “http://www.baidu.com”, NULL, NULL, SW_SHOWNORMAL);
或
system(“explorer http://www.baidu.com”);
或
system(“explorer http://www.baidu.com”);