Now Function

Returns the current system date and time as a Date value.

note

The Now function calculates time up to milliseconds, but return time in seconds.


Sintaxe:


Now

Valor de retorno:

Data

Exemplo:


  Sub ExampleNow
      msgbox "Agora son as " & Now
  End Sub
  REM Work with milliseconds timings
  Sub ExampleNowDouble
      Dim myTime As Double
      myTime = now
      MsgBox "It is now " & format(myTime, "yyyy-mm-dd HH:MM:SS.000")
  End Sub

Precisamos da súa axuda!