The following code takes the time from text1.text and text2.text and adds them up and places the new time in text3.text....it even notices that if minutes are more then 60 to add it to the hour section....now i need this code to do the same with the seconds.....so instead of 2:30 and 2:30 equals 5:00 I need 2:30:30 and 2:30:30 which would equal 5:01...got me? Heres the code
a=timevalue(text1)
b=timevalue(text2)
c=minute(a)
d=minute(b)
text3=hour(a)+hour _(b)& ":" & c + d
if (c+d) >=60 then
m=(hour(a) + hour _(b) + 1)
n=(c+d)-60
text3=m & ":" & n
End if

In the form load event add the following code:

Text1="2:30"
Text2="3:30"