本文介绍了WebBrowser中的错误0xE0434F4D的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我的程序使用组件WebBrowser解析本地站点. 最近, 站点 之后是添加的/ 更改的 存在错误:

My program uses a component WebBrowser to parse local site. More recently, after the site is somethingadded / changed there is an error:

未处理的"0x74f8b9bc"异常在"pars.exe"中:0xE0434F4D:0xe0434f4d.

何时 站点 打开一个新窗口 ,事件被 拦截程序,我输入实例 WebBrowser IDispatch ** ppDisp 循环:

When site opens a new window, the event is intercepted by theprogram, I put instance WebBrowser toIDispatch ** ppDisp and in a loop:

void CPars::ProcessMessages()
{
    MSG msg;
    while (PeekMessage(&msg, NULL, 0, 0, PM_REMOVE))
    {
        DispatchMessage(&msg);
    }
}
i got this error.

推荐答案


这篇关于WebBrowser中的错误0xE0434F4D的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-27 18:35