Jul 9, 2010 at 5:30am UTC
I am doing some windows form programming with C++ using VS2005.
I want to make my textbox unhighlightable, which means the text in it cannot be selected.
Does anyone know how to do so?
Jul 10, 2010 at 3:55am UTC
A text box cannot do this.
I'd suggest using a label, and then manually coding all of the functions you need it to perform.
Jul 12, 2010 at 9:14pm UTC
Yes it can. Subclass the text-box & handle the notification which corresponds to the highlighting action.
Jul 15, 2010 at 2:41am UTC
set your editbox the property "disabled", and then you can both edit or select any text.
is it your aim?