I have a CComboBox-derived class with a subclassed CListBox. I would like to make the first two item in the CListBox bold. How can I accomplish this?
I have a CComboBox-derived class with a subclassed CListBox. I would like to make
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
You need an owner-draw listbox, and override DrawItem() to draw the items. For the first two, you can use a different font than the rest.