In VB .NET WinForm if you want to do something at speicifed
interval you could use a TimerControl . An event is triggered
according to the specified interval
the delay is in milliseconds.
1 Second = 1000 Milli Seconds
To set the delay use the property
oTimer.interval = 1000
1000 = time in milliseconds
|