
How to detect the mose is moving
You could use a timer, check mouse position with GetCursorPos so you can see
if X or Y are changing or not
Just my 2 cents.
Declarations:
'TYPES
Public Type POINTAPI
X As Long
Y As Long
End Type
'Declares
Public Declare Function GetCursorPos Lib "user32" (lpPoint As POINTAPI) As
Long
Pete
www.compuguide.be/vbasic/
Use VB6. I want to know which API can detect the mouse is moving. I don't
want to use the form mouse event. Who can tell me? Please send the email to
Best Regards,
Steven Tsai