I read this at MSDN, regarding the WM_MouseWheel message.
But that's not what is returned. 120 or 65416 are the two values returned, depending on the direction I roll the wheel.
In the forum I found this code, which corresponds with what I am seeing.
Is there other documentation at MSDN that explains what I am seeing? I seem to have missed that paragraph!
A positive value indicates that the wheel was rotated forward, away from the user; a negative value indicates that the wheel was rotated backward, toward the user.
In the forum I found this code, which corresponds with what I am seeing.
Code:
CASE %WM_MOUSEWHEEL ' Mouse wheel wm = HI(WORD, wParam): IF wm>32768 THEN wm=-1 ELSE wm=1 ' Wheel turned (+)=up (-)=down
Comment