Hey guys, im new here but so far it looks like a good place. Right now i need help with my program. I have it looping and im trying to pause the loop for several seconds. Heres my code
Now sleep workd, But what it did was pause the whole program, instead of pausing between each loop. Any ideas,
Thanks,
Dave
VB.NET:
For x = 1 To Text3.Text
If Check1.Value = 1 Then
SendKeys Text1.Text
SendKeys "{Enter}"
End If
Sleep (200)
If Check2.Value = 1 Then
SendKeys Text2.Text
SendKeys "{Enter}"
End If
Thanks,
Dave