Pausing Between Loops

  • Thread starter Thread starter Sarah
  • Start date Start date
System.Threading.Thread.CurrentThread.Sleep(1000)

But why do you want to do this?

Greetz Peter
 
Take a look at Thread.Sleep()

How can I add a 1 second pause between each loop iteration?

Thanks.
 
Sarah said:
How can I add a 1 second pause between each loop iteration?

\\\
Imports System.Threading
..
..
..
For...
...
Thread.Sleep(1000)
Next...
///
 
Cor,

Cor Ligthert said:
This is inside a loop

Re-read the OP's post:

| How can I add a 1 second pause between each loop iteration?
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top