Does anyone know a way to hold a key down for lets say, 10 seconds.
This works for about 2 seconds, then it stops for some reason. It also lags the flipping crap out of my computer. The CPU completely spikes to 100% and I'm on a quad core.
Code:
Dim StopWatch As New StopWatch
StopWatch.Start
Do
SendKeys.SendWait("{Up}")
Loop Until StopWatch.ElapsedMilliseconds >= 5000
StopWatch.Stop