Hi,
How do i allow my textbox control to display html text?
Say i have this:
I need the textbox to format the HTMLCode:string mytext = "here<br>is<br>some<br>text"
textbox.text = mytext;
the output will be here<br>is<br>some<br>text.
Printable View
Hi,
How do i allow my textbox control to display html text?
Say i have this:
I need the textbox to format the HTMLCode:string mytext = "here<br>is<br>some<br>text"
textbox.text = mytext;
the output will be here<br>is<br>some<br>text.
An HTML textbox cannot format HTML as it is text only. The best you can do it do a search for <br>'s to replace with line returns.
If you need to use rich text take a look at http://www.freetextbox.com/.
HTH
DJ