<< Click to Display Table of Contents >> Hour (function) |
Hour(Expression)
Returns the hour of the given time as an integer value.
Expression is a numeric or a string expression which represents a time.
See also: Date, Day, Minute, Month, Now, Second, Time, Weekday, Year
Example:
Sub Main
T1 = Now ' Now = current date + time
MsgBox T1
MsgBox "Day: " & Day(T1)
MsgBox "Month: " & Month(T1)
MsgBox "Year: " & Year(T1)
MsgBox "Hours: " & Hour(T1)
MsgBox "Minutes: " & Minute(T1)
MsgBox "Seconds: " & Second(T1)
End Sub