| Date2ShortMonth Function | 
Unit
QESBPCSDateTime
Declaration
Function Date2ShortMonth(const DT: TDateTime): string;
Description
Relies on Regional Settings.
| Parameters | 
| DT | Date/Time to convert. | 
Returns
the Short Month Name of the Month component.
Category
Date/Time Conversion Routines
Month Based Arithmetic RoutinesImplementation
 
| function Date2ShortMonth (const DT: TDateTime): string;
begin
     Result := ShortMonthNames [Date2Month (DT)];
End; | 
|  |