The MASM Forum Archive 2004 to 2012

General Forums => The Workshop => Topic started by: RuiLoureiro on May 01, 2008, 03:06:11 PM

Title: Using the mouse
Post by: RuiLoureiro on May 01, 2008, 03:06:11 PM
Hi all
        I have some problems to control the mouse wheel. Whats the code when the whell goes forward and backward ? I have only WM_MOUSEWHEEL (and WM_LBUTTONDOWN , WM_RBUTTONDOWN, etc.). Any one can help me ?
Thanks
Rui
Title: Re: Using the mouse
Post by: jj2007 on May 01, 2008, 04:14:49 PM
The documentation is here (http://msdn2.microsoft.com/en-us/library/ms645617(VS.85).aspx). But I have the same problem - this message does not work as described, although it might be dependent on drivers and OS version.
Title: Re: Using the mouse
Post by: RuiLoureiro on May 01, 2008, 04:48:02 PM
Hi  jj2007
               Thank you so much ! It works fine.  Now i know that when we move the mouse wheel the windows sends the message WM_MOUSEWHEEL and if the high-order word of wParam is positive
the wheel was rotated forward (UP), if negative, backward (DOWN).
                Thanks !
Rui