P Peter Proost Dec 23, 2004 #2 System.Threading.Thread.CurrentThread.Sleep(1000) But why do you want to do this? Greetz Peter
G gani Dec 23, 2004 #3 good question -- http://gani.blogspot.com Peter Proost said: System.Threading.Thread.CurrentThread.Sleep(1000) But why do you want to do this? Greetz Peter Click to expand...
good question -- http://gani.blogspot.com Peter Proost said: System.Threading.Thread.CurrentThread.Sleep(1000) But why do you want to do this? Greetz Peter Click to expand...
S Shiva Dec 23, 2004 #4 Take a look at Thread.Sleep() How can I add a 1 second pause between each loop iteration? Thanks.
H Herfried K. Wagner [MVP] Dec 23, 2004 #5 Sarah said: How can I add a 1 second pause between each loop iteration? Click to expand... \\\ Imports System.Threading .. .. .. For... ... Thread.Sleep(1000) Next... ///
Sarah said: How can I add a 1 second pause between each loop iteration? Click to expand... \\\ Imports System.Threading .. .. .. For... ... Thread.Sleep(1000) Next... ///
C Cor Ligthert Dec 23, 2004 #6 \\\ Imports System.Threading . . . For... ... Thread.Sleep(1000) Next... /// Click to expand... This is inside a loop Cor
\\\ Imports System.Threading . . . For... ... Thread.Sleep(1000) Next... /// Click to expand... This is inside a loop Cor
L Larry Serflaten Dec 23, 2004 #7 Cor Ligthert said: This is inside a loop Click to expand... What an astute observation of the obvious! <he he> LFS
Cor Ligthert said: This is inside a loop Click to expand... What an astute observation of the obvious! <he he> LFS
H Herfried K. Wagner [MVP] Dec 24, 2004 #8 Cor, Cor Ligthert said: This is inside a loop Click to expand... Re-read the OP's post: | How can I add a 1 second pause between each loop iteration?
Cor, Cor Ligthert said: This is inside a loop Click to expand... Re-read the OP's post: | How can I add a 1 second pause between each loop iteration?