Let’s say that my textbox control is named messageTB. I would like to know if it is possible to do the following:
messageTB.Text = "Hello <b>World</b>"
and have the output text to show “Hello World“. In other words is there a way to enable html markup for the control? I am using visual studio.
The standard windows forms textbox control can’t do it.
If you want formatted text you need a richtextbox or some other control.