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.



DIM ls1 As String
ls1 = TIME$
'Assigns the current time to ls1.


Top