disable any input RichEditBox
-
Is there any way to just disable any input from user but not disable the control itsself. basically i want to display character in richedit box for read only Shin
Try setting the
ReadOnly
property of yourRichTextBox
control toTrue
and see if that is the desired result that you want. Best wishes for you and you project. :)
John 3:16: "For God so loved the world, that he gave his only begotten Son, that whosoever believeth in him should not perish, but have everlasting life."
-
Is there any way to just disable any input from user but not disable the control itsself. basically i want to display character in richedit box for read only Shin
Check out this article: http://www.codeproject.com/cs/miscctrl/ListViewEmbeddedControls.asp Included in his demo project, is a subclassed read only rich text box. Might be just what you are looking for. :) -- Dave