Unicode

  • Thread starter Thread starter Nitin
  • Start date Start date
How can I show Unicode characters in a textbox?

mytextbox.text = "N"c

or do you mean
Dim b As Char = ChrW(1234)

mytextbox.text = AscW(b).ToString

I hope this helps?

Cor
 
Nitin said:
How can I show Unicode characters in a textbox?

The textbox control is Unicode-aware, which means that you simply assign a
string to it's 'Text' property that contains the unicode characters.
 
Nitin,
In addition to the other comments.

Make sure you are using a Font that includes the glyphs for the Unicode
Character you are trying to display.

For example: Under Windows XP SP2 Arial Unicode MS includes most if not all
Unicode characters, while Arial does not include nearly as many Unicode
characters... (NOTE: I'm not sure if Arial Unicode MS ships with Office or
Windows).

I normally use "Programs - Accessories - System Tools - Character Map" under
Windows to see what glyhps a font support & what Unicode characters are
available.

Hope this helps
Jay
 

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