Setting focus to the WebBrowser control

  • Thread starter Thread starter wesley
  • Start date Start date
W

wesley

Hello,

My application is hosting three WebBrowser control. What I am trying to do
is when the mouse move over one of the WebBrowser controls I want to set the
focus on that control so the mouse wheel can move correctly. At the moment I
have to click on the WebBrowser control itself to make the mouse wheel to
work. In addition to that, the WebBrowser control does not expose a
MouseMove/Over/Enter events. Does anyone know how to do this? Or maybe if
you can direct me to the right newsgroup.

Thanks
 
You could try using the mouse move event for your form, then using the
XY coordinates of you cursor to find when it is over each browser.
This does seem a bit clunky but it should work.
 
Back
Top