Rich Text Box

  • Thread starter Thread starter Bill English
  • Start date Start date
B

Bill English

How do I make a button apply bold to a textbox, the
RichTextBox.Font.Bold property is read only?
 
Try the following code

If it doesn't help you, mail me at (e-mail address removed), (e-mail address removed)

With regards

Sadha Sivam
Malleable Minds software pvt Ltd.
 
Sorry i forget to attach the solutio

Try this

RichTextBox1.SelectionFont = New System.Drawing.Font(RichTextBox1.SelectionFont, FontStyle.Bold
 
Back
Top