Days2Months Function
Returns the number of Months the specified number of Days represents.

Unit
QESBPCSDateTime

Declaration
Function Days2Months(const Value: Extended): Extended;

Description
Months are based on Synodic Months - see DaysPerSynodicMonth.

Parameters
Value Number of Days

Returns
the Number of Months

Category
Date/Time Conversion Routines

Implementation

function Days2Months (const Value: Extended): Extended;
begin
     Result := Value / DaysPerSynodicMonth;
End;


HTML generated by Time2HELP
http://www.time2help.com