sumar 2 text !!!
como puedo hacer para que me sume dos text con este formato
text1 = 00:00:00
text2= 00:00:05
text3 = text1 + text2
Gracias !!!!
text1 = 00:00:00
text2= 00:00:05
text3 = text1 + text2
Gracias !!!!
hola,
Dim a As String
Dim b As String
Dim c As Variant
a = "00:00:02"
b = "00:00:03"
c = CDate(a) + CDate(b)
MsgBox c
salu2
sdemingo
Dim a As String
Dim b As String
Dim c As Variant
a = "00:00:02"
b = "00:00:03"
c = CDate(a) + CDate(b)
MsgBox c
salu2
sdemingo
Si quieres mostrarlo en el otro TextBox:
Text3 = CDate(Text1) + CDate(Text2)
Text3 = CDate(Text1) + CDate(Text2)
