DateSerial

Creates a ProPgDatesdate serial

Syntax
	KeyPgDeclareDeclare KeyPgFunctionFunction DateSerial ( KeyPgByvalByVal year KeyPgAsAs KeyPgLongLong, KeyPgByvalByVal month KeyPgAsAs KeyPgLongLong, 
	KeyPgByvalByVal day KeyPgAsAs KeyPgLongLong ) KeyPgAsAs KeyPgLongLong

Usage
	#include "vbcompat.bi"
	result = DateSerial( year, month, day )

Parameters
	year
		the year
	month
		the month of the year
	day
		the day of the month

Return Value
	Returns a ProPgDatesdate serial containing the date formed by the values in the 
	year, month and day parameters.The date serial returned has no decimal 
	part.

Description
	The compiler will not recognize this function unless vbcompat.bi or 
	datetime.bi is included.

Example
	#include "vbcompat.bi"

	Dim a As Long = DateSerial(2005, 11, 28)

	Print Format(a, "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

