> From our main application we're creating a COM component, written in
> C# under .Net, which in turn contains a web edit control. This
[quoted text clipped - 5 lines]
> Debugging reveals that the corresponding key messages (WM_KEYDOWN and
> WM_KEYUP) are Dispatch()ed to the proper control.
These accelerator keystrokes need to be delivered to WebBrowser control
via IOleInPlaceActiveObject::TranslateAccelerator. Apparently, one of
your hosts does that while the other does not.

Signature
With best wishes,
Igor Tandetnik
With sufficient thrust, pigs fly just fine. However, this is not
necessarily a good idea. It is hard to be sure where they are going to
land, and it could be dangerous sitting under them as they fly
overhead. -- RFC 1925
Jeroen ter Hofstede - 28 Mar 2006 08:10 GMT
>> From our main application we're creating a COM component, written in
>> C# under .Net, which in turn contains a web edit control. This
[quoted text clipped - 9 lines]
> control via IOleInPlaceActiveObject::TranslateAccelerator.
> Apparently, one of your hosts does that while the other does not.
Ok, thanks a lot!
Jeroen