TimeSerial

Gets a ProPgDatesDate Serial for the specified hours, minutes, and seconds

Syntax
	KeyPgDeclareDeclare KeyPgFunctionFunction TimeSerial ( KeyPgByvalByVal hour KeyPgAsAs KeyPgLongLong, KeyPgByvalByVal minute KeyPgAsAs KeyPgLongLong, 
	KeyPgByvalByVal second KeyPgAsAs KeyPgLongLong ) KeyPgAsAs KeyPgDoubleDouble

Usage
	#include "vbcompat.bi"
	result = TimeSerial( hours, minutes, seconds )

Parameters
	hour
		number of hours, in the range 0-23
	minute
		number of minutes
	second
		number of seconds

Return Value
	Returns a ProPgDatesdate serial containing the time formed by the values in the 
	hours, minutes and seconds parameters.The date serial returned has no 
	integer part.

Description
	hours must be specified in the range 0-23

	The compiler will not recognize this function unless vbcompat.bi or 
	datetime.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")

Differences from QB
	* Did not exist in QB. This function appeared in PDS and VBDOS

See also
	* ProPgDatesDate Serials
	* KeyPgDateSerialDateSerial
	* KeyPgTimeValueTimeValue
	* KeyPgDateValueDateValue

