vba excel can I set sleep lower than 500 (.5 secs) for sendkeys and still run smoothly
the first delay method that I used is application.wait now + 0.00001
that is (1secs).
Now I found that
Private Declare PtrSafe Sub Sleep Lib "kernel32" (ByVal ms As LongPtr)
sleep 500 '(0.5 secs)
is way better than application.wait
Is there a way or a method that can use delay less than .5secs?