Bold Labels in MFC

I want to create labels in MFC (static text) that have both bold and non- bold text. Something like that:

"I would like my label to look like , for example"

Any thoughts on how to do this?

I know that I can change the font of the whole label and have it either bold or not, but is there a way to merge more than one style or maybe give a label that looks like html?

+3
html visual-c ++ label mfc bold
source share
1 answer

Instead of using a static control, use a RichEdit control containing appropriately selected text.

+3
source share

All Articles