Now Function/text/sbasic/shared/03030203.xhpNow function
Now Function
Returns the current system date and time as a Date value.The Now function calculates time up to milliseconds, but return time in seconds.NowDateSub ExampleNow MsgBox "It is now " & NowEnd SubREM Work with milliseconds timingsSub ExampleNowDouble Dim myTime As Double myTime = now MsgBox "It is now " & format(myTime, "yyyy-mm-dd HH:MM:SS.000")End Sub