Sets the system time.
Syntax
Time = time
The required time argument is any numeric expression, string expression, or any combination, that can represent a time.
Remarks
If time is a string, Time attempts to convert it to a time by using the time separators that you specified for your system. If it can't be converted to a valid time, an error occurs.
Example
This example uses the Time statement to set the computer system time to a user-defined time.
Dim MyTime
MyTime = #4:35:17 PM# ' Assign a time.
Time= MyTime ' Set system time to MyTime.