Enable JavaScript in the browser to display LibreOfficeDev Help pages.

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

Return value:

तारीख़

Example:


  Sub ExampleTimer
      Dim lSec As Long,lMin As Long,lHour As Long
      lSec = Timer
      MsgBox lSec, 0, "Seconds since midnight"
      lMin = Int(lSec / 60)
      lSec = lSec Mod 60
      lHour = Int(lMin / 60)
      lMin = lMin Mod 60
    MsgBox Format(lHour,"00") & ":"& Format(lMin,"00") & ":" & Format(lSec,"00"),  0, "The time is"
End Sub
note

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