R
Roger Solano
How can I make my VB .net program sleep or pause for say 5 minutes?
Any help would be much appreciated.
Roger
Any help would be much appreciated.
Roger
* "Roger Solano said:How can I make my VB .net program sleep or pause for say 5 minutes?
Herfried K. Wagner said:'System.Threading.Thread.Sleep(5000)'.
I think it's in milliseconds so 5 minutes would be
'System.Threading.Thread.Sleep(300000)' 'three hundred thousand ms.
* "Ricky W. Hunt said:I think it's in milliseconds so 5 minutes would be
'System.Threading.Thread.Sleep(300000)' 'three hundred thousand ms.
Herfried K. Wagner said:Ooops. I mixed up 5 minutes with 5 seconds...
* "Ricky W. Hunt said:Herfried, what does a program actually "do" during this sleep time? Is it
consuming any resources other than memory?