Probably easiest to work with a TimeSpan object.
Dim ts as TimeSpan
I'm not sure what your time is stored in now. Is it already in a TimeSpan?
If not, you can convert from other formats:
string - ts = TimeSpan.Parse(string)
Numbers: ts = new TimeSpan(hours,minutes,seconds)
DateTime: ts = new...