调用浏览器打开网址
Mark一下
HWND h = FindWindowEx(NULL, NULL, NULL, L"Microsoft Internet Explorer");
ShellExecute(h, L"open", L"http://www.sega-pc.com/", NULL, NULL, SW_SHOWNORMAL);
本文介绍了一种使用编程方式调用Internet Explorer浏览器并打开指定网址的方法。通过使用FindWindowEx函数找到IE浏览器窗口,再利用ShellExecute函数完成网址的打开操作。
2829

被折叠的 条评论
为什么被折叠?