I would probably use this
Dim a As New TimeSpan(0, 12, 35, 0)
Dim b As New TimeSpan(0, 12, 30, 0)
Dim c As New TimeSpan
c = a.Add(b)
MessageBox.Show(c.ToString & " or " & _
CInt(c.TotalHours).ToString _
& ":" & c.Minutes.ToString("00"))
Want to reply to this thread or ask your own question?
You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.