| SameDate Function | 
Unit
QESBPCSDateTime
Declaration
Function SameDate(const DT1, DT2: TDateTime): Boolean;
| Parameters | 
| DT1 | First Date to process. | 
| DT2 | Second Date to process. | 
Category
Date/Time ComparisonImplementation
 
| function SameDate (const DT1, DT2: TDateTime): Boolean;
begin
     Result := Int (DT1) = Int (DT2);
End; | 
|  |