ID : 390
Now
Function
To return the current date and time.
Description
The current date and time is returned by string type data.
Attention
The format varies depending on the language setting.
Example
'!TITLE "Acquiring Current Date and Time"
' Assign the current date and time to aaa
Sub Sample_Now
Dim aaa As String
' Assign the current date and time to aaa
aaa = Now
' Display acquired date and time on the message output window
PrintDbg aaa
End Sub
ID : 390