RAD Studio VCL Reference
ContentsIndex
PreviousUpNext
DateUtils.RecodeDate Function

Replaces the date portion of a specified TDateTime value.

Pascal
function RecodeDate(const AValue: TDateTime; const AYear: Word; const AMonth: Word; const ADay: Word): TDateTime;
C++
TDateTime RecodeDate(const TDateTime AValue, const Word AYear, const Word AMonth, const Word ADay);

Call RecodeDate to convert the date/time value specified by AValue with the value obtained by changing the year to AYear, the month to AMonth, and the day of the month to ADay.  

AYear must fall between 1 and 9999 (inclusive). 

AMonth can range from 1 to 12. 

Legal values for ADay depend on the month represented by AMonth. (For example, if AMonth is 1, ADay can range from 1 to 31; if AMonth is 2, ADay can range from 1 to 28 or 1 to 29, depending on the year; and so on.) 

If the values provided for AYear, AMonth, and ADay do not represent a valid date, RecodeDate raises an EConvertError exception. 

 

Copyright(C) 2009 Embarcadero Technologies, Inc. All Rights Reserved.
What do you think about this topic? Send feedback!