Hallo,
Ich brauche nur das Kürzel des Wochentages, also Mo, Di, etc
Habe das jetzt so gelöst:
Delphi-Quellcode:
const
Wochentage: Array[1..7] of String =('Mo', 'Di', 'Mi', 'Do', 'Fr', 'Sa', 'So');
.
.
.
'Datum: ' + DateToStr(Kalender.Date) + ' ' + Wochentage[DayOfTheWeek(Kalender.Date)]
Kalender ist bei mir TMonthCalender.
Das ganze schaut dann so aus:
Datum: 14.05.2007 Mo