抑制CDHtmlDialog中的错误消息弹出窗口不能与IE 11一起使用

时间:2014-04-27 05:40:39

标签: c++ internet-explorer winapi mfc

我不确定它是IE 11的新功能,还是我做错了什么。我通过MFC的CDHtmlDialog类(内部封装了IWebBrowser2接口)嵌入了一个IE Web浏览器。)

所以我做了以下事情:

BOOL CMyDHtmlDialog::OnInitDialog()
{
    CDHtmlDialog::OnInitDialog();

    //Disable JavaScript errors
    m_pBrowserApp->put_Silent(VARIANT_TRUE);

    return TRUE;  // return TRUE  unless you set the focus to a control
}

但我仍然得到:

enter image description here

1 个答案:

答案 0 :(得分:0)