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