R
Roshawn
Hi,
I have a procedure that runs a For ... Next loop. See below.
Private Sub DoThis()
Dim i As Integer
For i = 1 to 10
'code omitted because I don't want you to see it
Next i
End Sub
What I would like to do is create a one second time frame between each time
the For...Next loop runs. Any suggestions on how to accomplish this?
Thanks,
Roshawn
I have a procedure that runs a For ... Next loop. See below.
Private Sub DoThis()
Dim i As Integer
For i = 1 to 10
'code omitted because I don't want you to see it

Next i
End Sub
What I would like to do is create a one second time frame between each time
the For...Next loop runs. Any suggestions on how to accomplish this?
Thanks,
Roshawn