I've within a mysql database some fields that come from a timediff so many times greater than 24hours.
If the value is less than 24 hour i can display with any problems, but at the same time the fileds become greater than 24hours i get an error.
to display the field i use:
strT = strT & "<TD bgColor=whitesmoke>" & hour(fldF.Value) &":"&minute(fldF.Value)&":"&second(fldF.Value)&" </TD>"
i know the the nolur() function return only value from 0 to 23, so how can i display time value greater than 24hours???
bye ste