[Help] Sleep Function[SOLVED]
I have a bit of an issue... I have a sendkeys function that is running WAY to fast.
I just need a little bit of time between the keystrokes(Basically a wait time)
Example:
What I kind of want is:
So that there is a wait time of 100
I just need a little bit of time between the keystrokes(Basically a wait time)
Example:
Code:
SendKeys.Send("1")
SendKeys.Send("2")
SendKeys.Send("3")
SendKeys.Send("4")
Code:
SendKeys.Send("1")
Wait 100
SendKeys.Send("2")
Wait 100
SendKeys.Send("3")
Wait 100
SendKeys.Send("4")
Wait 100
So that there is a wait time of 100




im not giving the code lol (only because i cant find it in my code notepad)