Weird WebBrowser behaviour
I am developping a Component Class Library including a WebBrowser component. It loads an HTML page including a lot of JavaScript. This JavaScipt is set to detect when the user presses the mouse, moves it, releases it. (document.onmousedown=...).
But I realised that when the user uses the scrollbars, these events are triggered, which is absolutely not what I want!
Does anyone know a workaround to disable this 'event bubbling' from the .Net scrollbars to the HTML page itself?
Thanks in advance.

