I have a rich textbox which contains data loaded in from a database. I want to change the functionality of the rich textbox to ensure that data can only be written to it by a user and not deleted from it.
Of course, making the rich textbox read only won’t help, nor will not enabling it. I’m stuck for ideas
I have a rich textbox which contains data loaded in from a database. I
Share
With only one RichTextBox, you can’t. What you have to do is instead of working with one RichTextBox, you could have two. Use one to show the data from database, and use another with editing enabled for the user to submit new data. something like how forum handle posts.