IsSeptember Function
Returns True if the given Date's Month is September.

Unit
QESBPCSDateTime

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

Parameters
DT Date to process.

Category
Date/Time Comparison

Implementation

function IsSeptember (const DT: TDateTime): Boolean;
begin
     Result := Date2Month (DT) = 9;
End;


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