Timer Function [Runtime]/text/sbasic/shared/03030303.xhpSun Microsystems, Inc.converted from old format - fpeTimer functionTimer Function [Runtime]Returns a value that specifies the number of seconds that have elapsed since midnight.You must first declare a variable to call the Timer function and assign it the "Long " data type, otherwise a Date value is returned.Syntax:TimerReturn value:DateExample:Sub ExampleTimerDim lSec as long,lMin as long,lHour as longlSec = TimerMsgBox lSec,0,"Seconds since midnight"lMin = lSec / 60lSec = lSec Mod 60lHour = lMin / 60lMin = lMin Mod 60MsgBox Right("00" & lHour , 2) & ":"& Right("00" & lMin , 2) & ":" & Right("00" & lSec , 2) ,0,"The time is"end sub