TIME$
(System Variable)
Obtains the current time.
TIME$
This statement stores the current time in the following format: "hh:mm:ss" (Hour: minute: second).
Time is displayed using the 24 hour system.
DATE$
DIM ls1 As String
ls1 = TIME$
'Assigns the current time to ls1.
Top