How to disable the keyboard and they mouse for ten seconds
How to disable the keyboard and they mouse for ten seconds
API Declarations
Private Declare Sub Sleep lib "kernel32" (ByVal dwmilliseconds as long)
Rate How to disable the keyboard and they mouse for ten seconds
(1(1 Vote))
DoEvents
'block the mouse and keyboard input
BlockInput True
Sleep 10000
'unblock the mouse and keyboard input
BlockInput False
End Sub
How to disable the keyboard and they mouse for ten seconds Comments
No comments yet — be the first to post one!
Post a Comment