到目前为止,我已经成功地使用以下函数来检索指向正在运行的 Internet Explorer 实例的 IWebBrowser2 指针,假设它是 PID。
static SHDocVw::IWebBrowser2Ptr findBrowserByPID( DWORD pid )
{
SHDocVw::IShellWindowsPtr ptr;
ptr.CreateInstance(__uuidof(SHDocVw::ShellWindows));
if ( ptr == NULL ) {
return 0;
}
// number of shell windows
const long nCount = ptr->GetCount();
// iterate over all shell windows
for (long i = 0; i < nCount; ++i) {
// get interface to item no i
_variant_t va(i, VT_I4);
IDispatchPtr spDisp = ptr->Item(va);
SHDocVw::IWebBrowser2Ptr spBrowser(spDisp);
if (spBrowser != NULL) {
// if there's a document we know this is an IE object
// rather than a Windows Explorer instance
HWND browserWindow;
try {
browserWindow = (HWND)spBrowser->GetHWND();
} catch ( const _com_error &e ) {
// in case ->GetHWND() fails
continue;
}
DWORD browserPID;
GetWindowThreadProcessId( browserWindow, &browserPID );
if ( browserPID == pid ) {
return spBrowser;
}
}
}
return 0;
}
我所做的是通过启动一个explorer.exe
进程CreateProcess
,然后使用上述函数将 IWebBrowser2Ptr 检索到它(以便我可以摆弄浏览器)。
不幸的是,这似乎不再适用于 Internet Explorer 8,因为 IE8 似乎重用了进程——至少在某种程度上如此。对于两个代码序列,例如:
PROCESS_INFORMATION pi;
// ...
if ( CreateProcess( ..., &pi ) ) {
// Wait a bit to give the browser a change to show its window
// ...
IWebBrowser2 *pWebBrowser = findBrowserByPID( pi.dwProcessId );
}
此代码的第一次运行正常,第二次无法检索 pWebBrowser 窗口。
经过一番调试,发现该findBrowserByPID
函数确实找到了很多浏览器窗口(并且在启动第二个浏览器实例后找到了更多),但它们都不属于新启动的进程。似乎所有的窗口都属于第一个启动的 IE 进程。
有人知道将 IWebBrowser2 指针指向某个 IE8 实例的另一种方法吗?或者有没有办法用 IE8 禁用这种明显的“重用”进程?