| IsFirstDayOfMonth Function | 
Unit
QESBPCSDateTime
Declaration
Function IsFirstDayOfMonth(const DT: TDateTime): Boolean;
| Parameters | 
| DT | Date to process. | 
Category
Date/Time Comparison
Month Based Arithmetic RoutinesImplementation
 
| function IsFirstDayOfMonth (const DT: TDateTime): Boolean;
begin
     Result := Date2Day (DT) = 1;
End; | 
|  |