Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
' 60000 = 1 minute
Timer1.Interval = 60000
Timer1.Enabled = True
End Sub
Private Sub Timer1_Tick(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Timer1.Tick
*** Do here, whatever you do at the end of the timer1 countdown ***
End Sub
If you write software, you just do it in your program.
This is a Visual Basic example
You have to add Timer1 to your VB form first in VB 2008 express
After the timer ticks down to zero, the program executes the code in the Timer1_Tick sub
You would have to have multiple timers if you were timing more than one event.