Bass71
MIS
- Jun 21, 2001
- 79
Hi:
I am writing an automated program that captures data from the Internet and pastes into excel. In order keep the system from jumping ahead, I have to put in puases. I use the
Application.Wait Now() + TimeSerial(0, 0, 1) -which works fine, but I'd like it to move a bit more quickly, however if I put
If I use
Timer as Integer
Timer = 650
for i = 1 to 14
SendKeys "{TAB}", True
Application.Wait Timer
next i
What happens is that the cursor just speeds through and fouls up the process. Is there a better way of creating less than 1 second pauses?
THnaks...
I am writing an automated program that captures data from the Internet and pastes into excel. In order keep the system from jumping ahead, I have to put in puases. I use the
Application.Wait Now() + TimeSerial(0, 0, 1) -which works fine, but I'd like it to move a bit more quickly, however if I put
If I use
Timer as Integer
Timer = 650
for i = 1 to 14
SendKeys "{TAB}", True
Application.Wait Timer
next i
What happens is that the cursor just speeds through and fouls up the process. Is there a better way of creating less than 1 second pauses?
THnaks...