IsTuesday Function
Returns True if the Date represents a Tuesday.

Unit
QESBPCSDateTime

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

Parameters
DT Date to process.

Category
Date/Time Comparison

Implementation

function IsTuesday (const DT: TDateTime): Boolean;
begin
     Result := DayOfWeek (DT) = 3;
End;


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