Hi!
I would like to display the Combobox-entries in different textstyles.
I tried this:
CFont font;
font.Create(......,FW_BOLD,.......);
m_ComboBox.SetFont(&font);
m_ComboBox.InsertString(0,"One"
.
.
.
font.DeleteObject();
font.Create(......,FW_NORMAL,.....);
m_ComboBox.SetFont(&font);
m_ComboBox.InsertString(99,"X"
.
.
.
Any ideas?
Thanks!
I would like to display the Combobox-entries in different textstyles.
I tried this:
CFont font;
font.Create(......,FW_BOLD,.......);
m_ComboBox.SetFont(&font);
m_ComboBox.InsertString(0,"One"
.
.
.
font.DeleteObject();
font.Create(......,FW_NORMAL,.....);
m_ComboBox.SetFont(&font);
m_ComboBox.InsertString(99,"X"
.
.
.
Any ideas?
Thanks!