Es geht bestimmt irgendwie mit:
TMonthCalendar.CNNotify und MCN_GETDAYSTATE.
Nur so ganz hinbekommen hab ichs auf anhieb nicht.
Reicht evtl. folgender Workaround:
Delphi-Quellcode:
procedure RefreshBoldings;
var
ADate: TDateTime;
begin
ADate := AExtMonthCalendar.DateTime;
AExtMonthCalendar.DateTime := 0;
AExtMonthCalendar.DateTime := ADate;
end;