IsLastDayOfMonth Function
Returns true if the date is the last day of a Month.

Unit
QESBPCSDateTime

Declaration
Function IsLastDayOfMonth(const DT: TDateTime): Boolean;

Parameters
DT Date to process.

Category
Date/Time Comparison
Month Based Arithmetic Routines

Implementation

function IsLastDayOfMonth (const DT: TDateTime): Boolean;
begin
     Result := Int (DT) = Int (GetLastDayOfMonth (DT));
End;


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