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