I have got my timer ticking but i need to add the leading zero back in but it code i am using only works on the seconds (label3) not on the minutes (label4)!
timer Code:
  1. Private Sub Timer1_Tick(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Timer1.Tick
  2.         Label3.Text -= 1
  3.         If Label3.Text = "00" Then
  4.             Label4.Text -= 1
  5.         End If
  6.         If Label3.Text = "00" Then
  7.             Label3.Text = "60"
  8.         End If
  9.         If Label3.Text < 10 Then
  10.             Label3.Text = "0" & Label3.Text
  11.         End If
  12.         If Label4.Text < 10 Then
  13.             Label4.Text = "0" & Label4.Text
  14.         End If
  15.         If Label3.Text = "00" And
  16.             Label4.Text = "00" Then
  17.             Timer1.Stop()
  18.         End If
  19.     End Sub