IsJune Function
Returns True if the given Date's Month is June.

Unit
QESBPCSDateTime

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

Parameters
DT Date to process.

Category
Date/Time Comparison

Implementation

function IsJune (const DT: TDateTime): Boolean;
begin
     Result := Date2Month (DT) = 6;
End;


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