Collabora Office 24.04 Help
此函式將傳回指定了從午夜零時算起、已逝去的秒數的值。
您必須先宣告一個變數以呼叫 Timer 函式,並將其指定為「長型」資料類型,否則傳回日期型值。
Timer
日期
Sub ExampleTimer
Dim lSec As Long,lMin As Long,lHour As Long
lSec = Timer
MsgBox lSec, 0, "Seconds since midnight"
lMin = lSec / 60
lSec = lSec Mod 60
lHour = lMin / 60
lMin = lMin Mod 60
MsgBox Right("00" & lHour , 2) & ":"& Right("00" & lMin , 2) & ":" & Right("00" & lSec , 2), 0, "The time is"
End Sub
The Timer function measures time in seconds. To measure time in milliseconds use the Timer service available in the ScriptForge library.