Open GoogleCodeExporter opened 8 years ago
Webbrowser is known to steal focus from other applications. If using IE7, you
can
subscribe to AllowFocusChange event and cancel it. If using IE6, one possible
way to
deal with focus issue is to add a check to WndProc of the IEServerWindow
(internal
class) to be notified when the webbrowser has gained focus and cancel it.
case WindowsMessages.WM_SETFOCUS:
break;
IEServerWindow class is used to subclass IE server window to intercept certain
events not easily intercepted using other means.
Original comment by mehr...@gmail.com
on 29 Oct 2007 at 8:49
Thanks, I will try this!
Original comment by murray.l...@gmail.com
on 29 Oct 2007 at 10:14
So far this seems to have done the trick! I hadn't noticed the AllowFocusChange
event
built into cExWB.
Original comment by murray.l...@gmail.com
on 1 Nov 2007 at 2:05
Original issue reported on code.google.com by
murray.l...@gmail.com
on 29 Oct 2007 at 8:18