Hello
I need to count down (from 2 hours) the time - in other words count backwards from 1:59:59 to 00:00:00

This is what I've done so far, can anyone help me improve
VB Code:
  1. Private Sub ETCountDown()
  2.         Static ETSec As Integer = 60
  3.         Static ETMin As Integer = 59
  4.         Static ETHour As Integer = ETDur - 1
  5.  
  6.         ''''''''''''''''''''''''''''''''''
  7.         'seconds
  8.         ETSec = ETSec - 1
  9.         lblETTimeLeft.Text = CStr(ETHour) & ":" & CStr(ETMin) & ":" & CStr(ETSec)
  10.         If ETSec = 0 Then
  11.             ETMin = ETMin - 1
  12.             lblETTimeLeft.Text = CStr(ETHour) & ":" & CStr(ETMin) & ":00"
  13.             ETSec = 59
  14.         ElseIf ETSec < 10 Then
  15.             lblETTimeLeft.Text = CStr(ETHour) & ":" & CStr(ETMin) & ":0" & CStr(ETSec)
  16.         End If
  17.         '''''''''''''''''''''''''''''''''
  18.  
  19.         ''''''''''''''''''''''''''''''''
  20.         'minutes not too sure!
  21.         If ETMin = 0 Then
  22.             ETHour = ETHour - 1
  23.             lblETTimeLeft.Text = CStr(ETHour) & ":00" & CStr(ETSec)
  24.             ETMin = 59
  25.         ElseIf ETMin < 10 Then
  26.             If ETSec < 10 Then
  27.                 lblETTimeLeft.Text = CStr(ETHour) & ":0" & CStr(ETMin) & ":0" & CStr(ETSec)
  28.             Else
  29.                 lblETTimeLeft.Text = CStr(ETHour) & ":0" & CStr(ETMin) & ":" & CStr(ETSec)
  30.             End If
  31.             End If
  32.         '''''''''''''''''''''''''''''''
  33.  
  34.         '''''''''''''''''''''''''''''''
  35.         'hour busy
  36.         If ETHour = 0 Then
  37.             lblETTimeLeft.Text = "00:" & CStr(ETMin) & ":" & CStr(ETSec)
  38.         ElseIf ETHour < 10 Then
  39.             lblETTimeLeft.Text = "0:" & CStr(ETMin) & ":" & CStr(ETSec)
  40.         End If
  41.     End Sub
  42.  
  43. Private Sub tET_Tick(ByVal sender As Object, ByVal e As System.EventArgs) Handles tET.Tick
  44.         ETCountDown() 'interval is set to 1000
  45.  
  46.     End Sub