BoldDays - TMonthCalendar
I have written a C++ Builder VCL Forms application with a TMonthCalendar control called TMonthCalendar.
I am wanting to set some of the days with the control to be bold.
Here is my current code:
Code:
TMonthCalendar->BoldDays([1,8], MonthBoldInfo);
However, I am getting the following error:
Quote:
E2193 Too few parameters in call to '_fastcall TCommonCalendar::BoldDays(unsigned int *,const int,unsigned int &)'
Can I please have some help to fix this?
Thanks
Re: BoldDays - TMonthCalendar
You seem to be passing to few arguments into BoldDays. Do you have any documentation for the TMonthCalendar, and specifically the BoldDays method?
Re: BoldDays - TMonthCalendar
Here is a link to the documentation: http://docwiki.embarcadero.com/Libra...OnGetMonthInfo
I have written the code word for word, yet have errors.