| [Overview][Constants][Procedures and functions][Index] | 
Increase a DateTime value with a number of weeks.
Source position: dateutil.inc line 287
| function IncWeek( | 
| const AValue: TDateTime; | 
| const ANumberOfWeeks: Integer | 
| ):TDateTime; | 
| const AValue: TDateTime | 
| ):TDateTime; | 
| AValue | 
 | DateTime to which weeks should be added. | 
| ANumberOfWeeks | 
 | Number of weeks to add | 
DateTime representing AValue plus ANumberOfWeeks weeks.
| AValue | 
 | DateTime to which weeks should be added. | 
IncWeek adds ANumberOfWeeks weeks to AValue and returns the resulting date/time.ANumberOfWeeks can be positive or negative.
| 
 | Increase a DateTime value with a number of years. | |
| 
 | Increases the month in a TDateTime value with a given amount. | |
| 
 | Increase a DateTime value with a number of days. | |
| 
 | Increase a DateTime value with a number of hours. | |
| 
 | Increase a DateTime value with a number of minutes. | |
| 
 | Increase a DateTime value with a number of seconds. | |
| 
 | Increase a DateTime value with a number of milliseconds. | 
Program Example73; { This program demonstrates the IncWeek function } Uses SysUtils,DateUtils; Begin Writeln('One Week from today is ',DateToStr(IncWeek(Today,1))); Writeln('One Week ago from today is ',DateToStr(IncWeek(Today,-1))); End.