Function CSPDate::SetDate()
Description:
Sets the date for the date object.
 |
Prototype:
void SetDate(unsigned long ulDay, unsigned long ulMonth, long lYear);
Arguments:
- unsigned long ulDay [IN]
The day of the month, ranging from 1 to 31.
- unsigned long ulMonth [IN]
The month, ranging from 1 to 12.
- long lYear [IN]
The year of the date.
Return value:
No return value (void).
Examples:
CSPDate dDate;
dDate.SetDate( 1, 1, 2000 );
See also:
member functions SetDay(), SetMonth(), SetYear()
|
|