- 相關(guān)軟件
>如何激活和關(guān)閉IE瀏覽器 創(chuàng)建者:webmaster 更新時間:2005-05-17 00:00
//激活并打開IE
void lounchIE()
{
HWND h=FindWindowEx(NULL, NULL, NULL, "Microsoft Internet Explorer");
ShellExecute(h, "open", "http://www.pcvc.net", NULL,NULL,SW_SHOWNORMAL);
}
//關(guān)閉IE及其它應(yīng)用程序
void CloseIE()
{
int app = BSM_APPLICATIONS;
unsigned long bsm_app = (unsigned long)app;
BroadcastSystemMessage(BSF_POSTMESSAGE, &bsm_app, WM_CLOSE, NULL, NULL);
}相關(guān)文章
本頁查看次數(shù):