DATE$
(System Variable)
Obtains the current date.
DATE$
This statement stores the current date in the following format: "yyyy/mm/dd" (year/month/day).
TIME$
DIM ls1 As String
ls1 = DATE$
'Assigns the current date to ls1.
Top