Fritz
Freshman
I have a timer to count in seconds:
Private counter As Integer
Private Sub Timer1_Tick(ByVal sender As Object, ByVal e As System.EventArgs) Handles Timer1.Tick
counter += 1
lblTimer.Text = counter.ToString.Format(TimeString)
End Sub
So far thats ok, but I would like it to start by 00:00.00. How can I do this?
Private counter As Integer
Private Sub Timer1_Tick(ByVal sender As Object, ByVal e As System.EventArgs) Handles Timer1.Tick
counter += 1
lblTimer.Text = counter.ToString.Format(TimeString)
End Sub
So far thats ok, but I would like it to start by 00:00.00. How can I do this?