Timer Function

рдордзреНрдпрд░рд╛рддреНрд░рд┐ рдХреЗ рдкрд╢реНрдЪрд╛рддреН рдХрд┐рддрдиреЗ рд╕реЗрдХрдгреНрдб рдЧреБрдЬрд░ рдЪреБрдХреЗ рд╣реИрдВ рдпрд╣ рдирд┐рд░реНрдзрд╛рд░рд┐рдд рдХрд░рдиреЗ рд╡рд╛рд▓реЗ рдореВрд▓реНрдп рдХреЛ рдкреНрд░рд╕реНрддреБрдд рдХрд░рддрд╛ рд╣реИ.

Note Icon

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:


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
note

The Timer function measures time in seconds. To measure time in milliseconds use the Timer service.