IsMonday Function
Returns True if the Date represents a Monday.

Unit
QESBPCSDateTime

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

Parameters
DT Date to process.

Category
Date/Time Comparison

Implementation

function IsMonday (const DT: TDateTime): Boolean;
begin
     Result := DayOfWeek (DT) = 2;
End;


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