* contrib/make_b32_all.bat * contrib/make_vc_all.bat * contrib/Makefile - contrib/msql + contrib/hbmsql * contrib/hbmsql/common.mak * contrib/hbmsql/Makefile - contrib/libmisc + contrib/hbmisc - contrib/mysql + contrib/hbmysql - contrib/odbc + contrib/hbodbc - contrib/ole + contrib/hbole - contrib/pgsql + contrib/hbpgsql * contrib/hbpgsql/common.mak * contrib/hbpgsql/Makefile - contrib/samples + contrib/hbclipsm * contrib/hbclipsm/common.mak * contrib/hbclipsm/Makefile
26 lines
363 B
Plaintext
26 lines
363 B
Plaintext
/*
|
|
* $Id$
|
|
*/
|
|
|
|
function Test()
|
|
|
|
? Days( 145604 )
|
|
? SecondsAsDays( 145604 )
|
|
|
|
? AMPM( "01:02:03" )
|
|
? TIMEASAMPM( "01:02:03" )
|
|
|
|
? SECS( "01:02:03" )
|
|
? TIMEASSECONDS( "01:02:03" )
|
|
|
|
? TSTRING( 2000 )
|
|
? TIMEASSTRING( 2000 )
|
|
|
|
? ELAPTIME( "01:02:03", "01:12:03" )
|
|
? TIMEDIFF( "01:02:03", "01:12:03" )
|
|
|
|
? TIMEISVALID( "01:02:03" )
|
|
? TIMEISVALID( "25:02:03" )
|
|
|
|
return nil
|