Hi,
When I change: RichTextBox1.Enabled = False
The back color change to Gray, I want to Keep the color white
How can I do it?
Printable View
Hi,
When I change: RichTextBox1.Enabled = False
The back color change to Gray, I want to Keep the color white
How can I do it?
Change the property backcolor to whatever you want it to be, that should help
VB Code:
TextBox1.BackColor = Color.Blue
Redmo
Hi,
It's work for TextBox
But not for RichTextBox
Thanks
How about setting it as readonly.
RichTextBox1.ReadOnly = True
It will retain its colors, but not be editable.
richtextbox.backcolor= color.blue
Hi,
The ReadOnly method done the trick.
Thanks All