此帖出自嵌入式系统论坛
最新回复
{
IHTMLDocument2 *pdoc = NULL;
IDispatch *pdp = NULL;
m_pBrowserApp->get_Document(&pdp);
if(!pdp)
MessageBox("get pdp error");
if(!SUCCEEDED(pdp->QueryInterface(IID_IHTMLDocument2,(void**)(&pdoc))))
{
long error = GetLastError();
CString s;
s.Format("%d",error);
MessageBox(s+"get doc error");
return;
}
}
这段代码在VC++ 中可以正常运行,执行结果是对的.
但是在EVC里显示 6get doc error
请问各位高手是怎么回事
详情
回复
发表于 2009-7-24 22:50
| ||
|
||
| |
|
|
| |
|
|
此帖出自嵌入式系统论坛
| ||
|
||
| |
|
|
| |
|
|
此帖出自嵌入式系统论坛
| ||
|
||
EEWorld Datasheet 技术支持