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.
Hello Brian, and thank u for the reply.
I think this is a bug of the list, because when I registerd the OnMouseWheel event of the listview, I saw that in the e.Delta is POSITIVE for wheel UP and NEGATIVE for wheel DOWN.
(note that, this is the default behavior - i didn't do anything in the OnMouseWheel event/method.
Thanks in advance
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.