Purpose
Returns a Time value. You can call this function from the MapBasic window in MapInfo Pro.
Syntax
NumberToTime( numeric_time )
numeric_time is an nine-digit integer in the form HHMMSSFFF, where HH is hour, MM is minutes, SS is seconds, and FFF is fractions. For example, 214237582 represents 9:42:37.582 P.M.
Return Value
Example
dim fNum as integer
dim Y as time
fNum = 214237582
Y = NumberToTime(fNum)
Print FormatTime$(Y,"hh:mm:ss.fff tt")
See also:
Date and Time Functions, FormatTime$() function, GetTime() function, NumberToDate() function, NumberToDateTime() function