Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
115
Mouse scrolldown problem
posted

Hello.

I have a UltraListView control (View=Details).

I have a problem with the mouse scroll button.

when scrolling up with (mouse scroll button), scrolling works great (the list is scrolling up),

but when scrolling down with (mouse scroll button), the scrolling is going UP!!!!

 

Please help,

Thanks.

Parents
No Data
Reply
  • 69832
    Offline posted

    Assuming that by "mouse scroll button" you are referring to the mouse wheel, the control does this by overriding the OnMouseWheel method, which passes in the wheel delta. This number is a signed integer that defines the number of detents the wheel was scrolled, with the sign indicating the direction. This is a function of the mouse driver...since the wheel behavior is configurable, it would seem possible that there is a way to configure it to do what you are describing, although I have never seen it myself.

Children