But when a TAB or Enter Key is Pressed when my Control is in Focus, i
dont get the key events.
I get a onKeyPress Dom Event using javascript on the html page.
I have read articles describing a similar problem , but in most cases
they talk about intercepting the message Loop and calling
IOleInPlaceActiveObject->TranslateAccelerator of the IWebBrowser2
Object.
But in my case i dont have the MessageLoop since SWT handles all
Window Messages.
Is there a way to get the Key Events from my CAXWindow without using a
MessageLoop, so i can call TranslateAccelarator on
IOleInPlaceActiveObject. ?
My class implements CWindowImpl and in the OnCreate() method i create
a CAXWindow and host a IWebBrowser2
Thanks in advance