how can i use the timer tool in vb.net
Visual Basic
2
Posts
2
Posters
0
Views
1
Watching
-
Dear, i want to start form after spesfic time such as (10 second)but the problem i dont know how could i use this fucntion which called timer in .net kilany
Set enabled property of the Timer control to True At run time you can use
Timer1.Enabled = True
Set Interval property of the Timer to 10000 ( 10 * 1000 milliseconds ) Double click the Timer control You can use this method to do whatever you wantPrivate Sub Timer1_Tick(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Timer1.Tick End Sub
There are many web sites on the internet about timersRegards,
Chatura Dilan
If at first you don't succeed, try; try again, so that you know what not to do the next time. The answer is out there.