在自己的应用程序中连接IE的实例


日期: 2002-02-10 14:00 | 联系我
关注我: Telegram, Twitter

在自己的应用程序中连接IE的实例,源码如下:

#import "mshtml.tlb": // Internet Explorer 5 #import "shdocvw.dl"

void CIEEnumWindowsDlg::ConnectToShell() { CoInitialize(NULL); if(m_spSHWinds == 0) { //// Get reference to ShellWindows interface// if(m_spSHWinds.CreateInstance(__uuidof(SHDocVw::ShellWindows)) == S_OK) { // Event Sink // LPCONNECTIONPOINTCONTAINER pConnPtCont; if ((m_spSHWinds != NULL) && SUCCEEDED(m_spSHWinds->QueryInterface(IID_IConnectionPointContainer, (LPVOID*)&pConnPtCont))) { ASSERT(pConnPtCont != NULL); LPCONNECTIONPOINT pConnPt = NULL; DWORD dwCookie = 0; if (SUCCEEDED(pConnPtCont->FindConnectionPoint( __uuidof(SHDocVw::DShellWindowsEvents), &pConnPt))) { ASSERT(pConnPt != NULL); pConnPt->Advise( this->GetIDispatch(FALSE), &dwCookie); pConnPt->Release(); } pConnPtCont->Release(); } } else { AfxMessageBox("Shell Windows interface is not avilable"); } } }

>>> DOWN !!! >>>下载源代码及演示程序


 文章评论
目前没有任何评论.

↓ 快抢占第1楼,发表你的评论和意见 ↓

当前页面是本站的 百度 MIP 版本。
欲查看完整版本和发表评论请点击:完整版 »

 

程序员小辉 建站于 1997
Copyright © XiaoHui.com; 保留所有权利。