Returns cursor positions X and Y
Returns cursor positions X and Y
API Declarations
x As Long
y As Long
End Type
Private Declare Function M_GetCursorPos Lib "user32" Alias "GetCursorPos" (lpPoint As POINTAPI) As Long
Rate Returns cursor positions X and Y
(1(1 Vote))
Dim pt As POINTAPI
Call M_GetCursorPos(pt)
xX = pt.x
xY = pt.y
End Sub
Returns cursor positions X and Y Comments
No comments yet — be the first to post one!
Post a Comment