October 1998
Intermediate to advanced
656 pages
16h 10m
English
| TimeValue Function |
No
TimeValue(time)
time
Use: Required
Data Type: String
Any valid string representation of a time.
A Variant of sub data type Date.
Converts a string representation of a time to a Variant Date data type.
If time is invalid, a runtime error is generated.
If time is Null, TimeValue returns Null.
Both 12- and 24-hour clock formats are valid.
Any date information contained within time is ignored by the TimeValue function.
A time literal can also be assigned to a Variant or Date variable by surrounding the date with hash characters (#), as the following snippet demonstrates:
Dim dMyTime As Date dMyTime = #12:30:00 AM#
The CDate function can also cast a time expression contained within a string as a Date variable, with the additional advantage of being internationally aware.
Read now
Unlock full access