Answered Making a My.Settings bit of text bold

pizzaboy

Well-known member
Joined
Jan 5, 2008
Messages
57
Programming Experience
1-3
I'm using My.Settings to store some text information which will be displayed to the user under certain conditions. What I'd like to know is whether part of the text (not all of it) can be formatted in bold?

The reason I'm storing in My.Settings is because it can be customized but not to the extent where I need to store it in a database.

And while I'm at it, is it possible to format parts of MessageBox text and labels in bold, or is this an all or not at all situation i.e. changing the font property?


Any help would be greatly appreciated.

Thanks.
 
Last edited:
If you're displaying mixed formatted text you're using RichTextBox, and can store the Rtf string rather than the plain Text string.

MessageBox, no, plain text only. Create your own "MessageBox" form with a RichTextBox to display formatted text (ReadOnly).
 
Back
Top