Frequently Asked Component Specific Questions

Options

Display all FAQ items

Search FAQ items:


Displaying items 1 to 1 of 1, page 1 of 1

<< previous next >>

TAdvSmoothDatePicker
How to change the name of the week days.

You can override the ShortDayNames array in the SysUtils unit. For example to change the name of the week days from 'Sun Mon Tue Wed Thu Fri Sat' to 'S M T W T F S' :
ShortDayNames[1] := 'S';
ShortDayNames[2] := 'M';
ShortDayNames[3] := 'T';
ShortDayNames[4] := 'W';
ShortDayNames[5] := 'T';
ShortDayNames[6] := 'F';
ShortDayNames[7] := 'S';