HelpNeeder
HelpNeeder

Reputation: 6480

How to disable textbox from editing?

I want to use a text box to display some text. I can not disable it, because then the scroll bar will not work.

How can I prevent editing within the multi-line textbox, yet make it appear as if it is enabled, so that the scroll bar works correctly?

Upvotes: 84

Views: 229901

Answers (4)

Ammar Shaukat
Ammar Shaukat

Reputation: 395

        textBox1.ReadOnly = true;

"true" property will make the text box readonly activate. and "false" will make it in regular form. Thanks.

Upvotes: 5

FUSION CHA0S
FUSION CHA0S

Reputation: 93

As mentioned above, you can change the property of the textbox "Read Only" to "True" from the properties window.

enter image description here

Upvotes: 8

Nick O
Nick O

Reputation: 3826

The TextBox has a property called ReadOnly. If you set that property to true then the TextBox will still be able to scroll but the user wont be able to change the value.

Upvotes: 25

Austin Salonen
Austin Salonen

Reputation: 50215

You can set the ReadOnly property to true.

Quoth the link:

When this property is set to true, the contents of the control cannot be changed by the user at runtime. With this property set to true, you can still set the value of the Text property in code. You can use this feature instead of disabling the control with the Enabled property to allow the contents to be copied and ToolTips to be shown.

Upvotes: 154

Related Questions