When I write the minutes and I change to other text box, if minutes is big 60 escribir en text box hour "1" and to write in minutes' text box the rest. Now is change to 59.
Ex.: I write 0:68:00, change->
now-> 0:59:00
I said-> 1:08:00
Cuando escribo los minutos y cambio a la otra caja de texto, si los minutos son la hora grande “1” de la caja de texto del en de 60 escribir y escribir en la caja de texto de los minutos el resto.
Ej.: Yo escribo 0:68:00, cambio->
ahora-> 0:59:00
propuesta->1:08:00
Suggestion - Sugerencia:
if texBoxMs>60{
secondTemp=parteEntera(texBoxMs/60);
textBoxSecond+=secondTemp;
texBoxMs=secondTemp*60-texBoxMs;
}
if textBoxSeccond>60{...
}
if textBoxMinutes>60{...
}