LibreOffice 25.2 Help
මධ්යම රාත්රියේ සිට ගතවී ඇති තත්පර ගණන නිර්දේශ කරන අගයක් ලබාදෙයි.
කාලමැනුම් ශ්රිතය ක්රියාත්මක කිරීමට පෙර ඔබ විචල්යයක් ප්රකාශ කර එයට "Long" දත්ත වර්ගය නියම නොකළහොත් Date අගයක් එමඟින් ලබා දෙයි.
  Timer
දිනය
  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
The Timer function measures time in seconds. To measure time in milliseconds use the Timer service available in the ScriptForge library.