special character

  • Thread starter Thread starter Dean L. Howen
  • Start date Start date
D

Dean L. Howen

How to show special character (example anpha, beta, gama...) in
TextBox/RichEditTextBox?
Thanks
 
You have to look up the characrer code somewhere and then insert it in your
textbox like the following:

textbox.Text = "\uA23F";

where A23F is a placeholder for the hexadecimal charcode of your character.
Make sure the font you are using supports the characters you want to
display.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top