Hour
Gets the hour of day from a Date Serial
#include "vbcompat.bi"
result = Hour( dateserial )
date_serial
The compiler will not recognize this function unless vbcompat.bi is included.
Syntax
Usage
#include "vbcompat.bi"
result = Hour( dateserial )
Parameters
date_serial
the date serial
Return Value
Description
The compiler will not recognize this function unless vbcompat.bi is included.
Example
#include "vbcompat.bi"
Dim ds As Double = DateSerial(2005, 11, 28) + TimeSerial(7, 30, 50)
Print Format(ds, "yyyy/mm/dd hh:mm:ss "); Hour(ds)
Dim ds As Double = DateSerial(2005, 11, 28) + TimeSerial(7, 30, 50)
Print Format(ds, "yyyy/mm/dd hh:mm:ss "); Hour(ds)
Differences from QB
- Did not exist in QB. This function appeared in PDS and VBDOS
See also