Hello!
I wrote a little program to convert HH:MM:SS into Seconds. Here is the code:

vb Code:
  1. Private Function HMSToSeconds(ByRef HMS As String) As Int32
  2.  
  3.         Try
  4.             Dim Str As String = HMS
  5.             Dim ColonCount As Int32 = 0
  6.             For i As Int32 = 0 To Str.Count - 1 Step 1
  7.                 If Str(i) = ":"c Then
  8.                     ColonCount += 1
  9.                 End If
  10.             Next
  11.             If ColonCount <= 2 Then
  12.                 Dim StrArray() As String = Str.Split(":"c)
  13.                 Dim Sec As Int32 = 0
  14.                 Dim Factor As Int32 = 1
  15.                 For i As Int32 = StrArray.Count - 1 To 0 Step -1
  16.                     Sec += StrArray(i) * Factor
  17.                     Factor *= 60
  18.                 Next
  19.                 Return Sec
  20.             Else
  21.                 MsgBox("Incorrect format. Use HH:MM:SS")
  22.             End If
  23.         Catch ex As Exception
  24.             MsgBox(ex.Message)
  25.         End Try
  26.  
  27.     End Function

I also did the reverse: (Seconds into HH:MM:SS)

vb Code:
  1. Private Function SecondsToHMS(ByRef Seconds As Int32) As String
  2.  
  3.         Try
  4.             Dim Sec As Int32 = Seconds
  5.             Dim Factor As Int32 = 60 ^ 2
  6.             Dim HMS As String = Nothing
  7.             Dim Counter As Int32 = 0
  8.             For i As Int32 = 2 To 0 Step -1
  9.                 Counter = 0
  10.                 Factor = 60 ^ i
  11.                 Do Until Sec < Factor
  12.                     Sec -= Factor
  13.                     Counter += 1
  14.                 Loop
  15.                 If Counter < 10 Then
  16.                     HMS += "0"
  17.                 End If
  18.                 HMS += Counter.ToString
  19.                 If i > 0 Then
  20.                     HMS += ":"
  21.                 End If
  22.             Next
  23.             Return HMS
  24.         Catch ex As Exception
  25.             MsgBox(ex.Message)
  26.         End Try
  27.  
  28.     End Function

I hope you can find a use for this.
~NinjaNic