| IsJuly Function | 
Unit
QESBPCSDateTime
Declaration
Function IsJuly(const DT: TDateTime): Boolean;
| Parameters | 
| DT | Date to process. | 
Category
Date/Time ComparisonImplementation
 
| function IsJuly (const DT: TDateTime): Boolean;
begin
     Result := Date2Month (DT) = 7;
End; | 
|  |