[.net] Seeing if the mouse has moved or is moving?

Started by
3 comments, last by foolios 16 years, 5 months ago
MOUSEEVENTF_MOVE Specifies that movement occurred. http://msdn2.microsoft.com/en-us/library/ms646260.aspx Can someone give me an example of using the mouse movement occuring catch? What I mean is, if I check after about a minute for the mouse having moved during that time or that the mouse is currently moving. How can this be done with MOUSEEVENTF_MOVE ?
I rate users. Its just not having much impact as my rating is low...
Advertisement
What exactly are you trying to do? Are you using .Net? C#? In a game or in windows forms?

theTroll
Sorry, C#/WIndows forms/VS 2005
I rate users. Its just not having much impact as my rating is low...
You can use the GetCursorPos API, which returns the cursor location in pixels on the screen (where 0,0 is the top-left corner) for a polling method if that helps.
NetGore - Open source multiplayer RPG engine
Thank you
I rate users. Its just not having much impact as my rating is low...

This topic is closed to new replies.

Advertisement