Re: MSHTML IWebBrowser2 problem - Catching events causes missed keystrokes
Since this question relates to the use of MFC, why did you ask in the ATL newsgroup?
<craigah@gmail.com> wrote in message
news:7ebd4020-90d8-40da-9f73-3e7d6021229e@s1g2000prd.googlegroups.com...
I've got a bit of a problem with my application using MSHTML.
Everything works except the odd keystroke gets missed typing fast. I
think it may have to do with sinking the events, like the system is
getting bogged down passing events around and then misses keyboard
inputs.
The details: my application is a separate program written in C++ and
MFC in Visual Studio 2005. The program attaches to a currently running
(independent) instance of Internet Explorer, so the programs are in
two seperate processes/threads. My program gets a pointer to the
IWebBrowser2 interface of each tab and passes it to an corresponding
object of type CCmdTarget:
class CHandler : public CCmdTarget
{
IWebBrowser2* m_pWebBrowser2;
DWORD m_dwBrowserCookie;
?
DECLARE_DISPATCH_MAP()
};
This class keeps track of what's happening in the browser page. I sink
the browser events with the following command in CHandler:
LPUNKNOWN pUnkSink = GetIDispatch(FALSE);
retval = AfxConnectionAdvise((LPUNKNOWN)m_pWebBrowser2,
DIID_DWebBrowserEvents2, pUnkSink, FALSE, &m_dwBrowserCookie);
If I comment out the AfxConnectionAdvise, then no keystrokes are
missed but no more events are caught. If I leave the line in then I
correctly sink the events but miss the occasional keystroke if typing
fast.
Someone suggested marshalling may be the problem between the two
threads (mine and IE) but I'm not sure A) how to do that, and B) why
it would work _almost_ fine without it.
Any suggestions are greatly appreciated!