| Date2Day Function | 
Unit
QESBPCSDateTime
Declaration
Function Date2Day(const DT: TDateTime): Word;
| Parameters | 
| DT | Date/Time to Convert. | 
Returns
the Day of the Month.
Category
Date/Time Conversion RoutinesImplementation
 
| function Date2Day (const DT: TDateTime): Word;
var
     M, Y: Word;
begin
     OptDecodeDateW (DT, Y, M, Result);
End; | 
|  |