[Overview][Constants][Procedures and functions][Index] |
Replace seconds part of a TDateTime value with another second.
Source position: dateutil.inc line 363
function RecodeSecond( |
const AValue: TDateTime; |
const ASecond: Word |
):TDateTime; |
AValue |
|
Date/time to recode |
ASecond |
|
Second to replace in AValue |
AValue with replaced second.
RecodeSecond replaces the Second part of the timestamp AValue with ASecond. All other parts of the date/time stamp are left untouched.
If the ASecond value is not within a valid range (0..59) then an EConvertError exception is raised.
|
Replace year part of a TDateTime value with another year. |
|
|
Replace month part of a TDateTime value with another month. |
|
|
Replace day part of a TDateTime value with another day. |
|
|
Replace hours part of a TDateTime value with another hour. |
|
|
Replace minutes part of a TDateTime value with another minute. |
|
|
Replace milliseconds part of a TDateTime value with another millisecond. |
|
|
Replace date part of a TDateTime value with another date. |
|
|
Replace time part of a TDateTime value with another time. |
|
|
Replace selected parts of a TDateTime value with other values |
Program Example92; { This program demonstrates the RecodeSecond function } Uses SysUtils,DateUtils; Const Fmt = 'dddd dd mmmm yyyy hh:nn:ss'; Var S : AnsiString; Begin S:=FormatDateTime(Fmt,RecodeSecond(Now,0)); Writeln('This moment, seconds stripped : ',S); End.