I am looking for a way to pause a LOOP long enough to display the results
before moving on to the next go around. In the immediate window I can see
the results are there, just happening to fast to see results in form.

Re: Looping... by OldDog

OldDog
Wed Feb 28 16:17:31 CST 2007

On Feb 27, 6:37 pm, 116 <1...@discussions.microsoft.com> wrote:
> I am looking for a way to pause a LOOP long enough to display the results
> before moving on to the next go around. In the immediate window I can see
> the results are there, just happening to fast to see results in form.

Try putting WScript.Sleep(1000) just before the LOOP

'value is in milliseconds so 1000 is one second
(1000*60) = 1 minute and so on

//wait one hour
WScript.Sleep(1000*60*60) 'value is in milliseconds

OldDog