IsNovember Function
Returns True if the given Date's Month is November.

Unit
QESBPCSDateTime

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

Parameters
DT Date to process.

Category
Date/Time Comparison

Implementation

function IsNovember (const DT: TDateTime): Boolean;
begin
     Result := Date2Month (DT) = 11;
End;


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