| [Overview][Constants][Procedures and functions][Index] | 
Replace hours part of a TDateTime value with another hour.
Source position: dateutil.inc line 348
| function RecodeHour( | 
| const AValue: TDateTime; | 
| const AHour: Word | 
| ):TDateTime; | 
| AValue | 
 | Date/time to recode | 
| AHour | 
 | Hour to replace in AValue | 
AValue with replaced hour.
RecodeHour replaces the Hour part of the timestamp AValue with AHour. All other parts of the date/time stamp are left untouched.
If the AHour value is not within a valid range (0..23) 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 minutse part of a TDateTime value with another minute. | |
| 
 | Replace seconds part of a TDateTime value with another second. | |
| 
 | 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 Example90; { This program demonstrates the RecodeHour function } Uses SysUtils,DateUtils; Const Fmt = 'dddd dd mmmm yyyy hh:nn:ss'; Var S : AnsiString; Begin S:=FormatDateTime(Fmt,RecodeHour(Now,0)); Writeln('Today, in the first hour : ',S); End.