try this:

vb.net Code:
  1. Dim ts As TimeSpan = TimeSpan.Parse("01:20:00")
  2. MsgBox(String.Format("{0} hours, {1} minutes, {2} seconds", ts.Hours, ts.Minutes, ts.Seconds))