VB Code:
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click RichTextBox1.Font.Bold = True End Sub
It says it's a read only property. Is there a way to change that?
Thanks,
James
Printable View
VB Code:
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click RichTextBox1.Font.Bold = True End Sub
It says it's a read only property. Is there a way to change that?
Thanks,
James
Code:RichTextBox1.Font = New Font("Arial", 8, FontStyle.Bold)
Thanks a lot!! :D
Anytime!:wave: