In che linguaggio ?
L'ho fatto in js, tradurlo in altri linguaggi è abbastanza facile.
<script type="text/javascript" language="Javascript">
<!--//
function check(secT){
secondi = secT % 60;
minuti = ((secT - secondi)/60) % 60;
ore = (secT - secondi - (minuti * 60)) / 3600 % 3600;
alert(ore + ":" + minuti + ":" + secondi);
}
//-->
</script>
<input type="text" onBlur="check(this.value)">