| Date2ShortDOW Function | 
Unit
QESBPCSDateTime
Declaration
Function Date2ShortDOW(const DT: TDateTime): string;
Description
Relies on Regional Settings.
| Parameters | 
| DT | Date/Time to convert. | 
Returns
the Short Day of Week Name for the given Date.
Category
Date/Time Conversion RoutinesImplementation
 
| function Date2ShortDOW (const DT: TDateTime): string;
begin
     Result := ShortDayNames [DayOfWeek (DT)];
End; | 
|  |