[Overview][Constants][Procedures and functions][Index] |
Calculate the number of whole months between two DateTime values
Source position: dateutil.inc line 257
function MonthsBetween( |
const ANow: TDateTime; |
const AThen: TDateTime |
):Integer; |
ANow |
|
First moment in time |
AThen |
|
Second moment in time |
Number of whole months between ANow and AThen.
MonthsBetween returns the number of whole months between ANow and AThen. This number is an approximation, based on an average number of days of 30.4375 per month (average over 4 years). This means the fractional part of a month is dropped.
|
Calculate the number of whole years between two DateTime values |
|
|
Calculate the number of whole weeks between two DateTime values |
|
|
Number of whole days between two DateTime values. |
|
|
Calculate the number of whole hours between two DateTime values. |
|
|
Calculate the number of whole minutes between two DateTime values. |
|
|
Calculate the number of whole seconds between two DateTime values. |
|
|
Calculate the number of whole milliseconds between two DateTime values. |
Program Example56; { This program demonstrates the MonthsBetween function } Uses SysUtils,DateUtils; Procedure Test(ANow,AThen : TDateTime); begin Write('Number of months between '); Write(DateToStr(AThen),' and ',DateToStr(ANow)); Writeln(' : ',MonthsBetween(ANow,AThen)); end; Var D1,D2 : TDateTime; Begin D1:=Today; D2:=Today-364; Test(D1,D2); D2:=Today-365; Test(D1,D2); D2:=Today-366; Test(D1,D2); D2:=Today-390; Test(D1,D2); D2:=Today-368; Test(D1,D2); D2:=Today-1000; Test(D1,D2); End.