Detect if mouse is not in motion. No API CAlls
Detect if mouse is not in motion. No API CAlls
Rate Detect if mouse is not in motion. No API CAlls
(1(1 Vote))
dim ctr
private sub form_load()
ctr = 0
timer1.enabled = true
end sub
private sub form_mousemove(Paramaters.....)
ctr = 0
timer1.enabled = true
end sub
private sub timer1_timer()
if ctr = 10 then ' for 10 seconds detection
msgbox "Mouse is not active"
else
ctr = ctr + 1
end if
end sub
Detect if mouse is not in motion. No API CAlls Comments
No comments yet — be the first to post one!
Post a Comment