vote up 3 vote down star
1

My application correctly handles different kind of character sets, but only internally - when it comes to displaying text in standard WinForms labels und textboxes, it seems to have problems with chinese characters.

The problem seems to be the font used (Tahoma), because when I copy&paste the text, or view it in the debugger, it is displayed correctly. Also when I set MS Mincho as the font to be used, the characters on the screen look OK.

Of course, I don't want to use MS Mincho in the entire application. Do I have to switch the font depending on the characters displayed, or is there a better way I have missed?

flag

64% accept rate
Make sure you don't use MS Mincho for Chinese. That is a Japanese font. You should use SimHei or SimSun for Simplified Chinese and MingLiU for Traditional Chinese. They are different, and a native will instantly spot the difference. And bzlm is right, there is something wrong with you forms, they should work out of the box even with Tahoma due to the font linking done by the system. – Mihai Nita Nov 19 at 7:40

2 Answers

vote up 2 vote down check

UniScribe, which was introduced in Windows 2000, is supposed to handle this transparently, meaning that it will automatically use a different font (such as Mincho) for characters that aren't present in the font you've selected. This is why it looks correct in the debugger, even though the font used in the debugger doesn't contain Chinese characters. Perhaps you are doing something that disables UniScribe, or is problematic in some other way. Perhaps if you could paste some code it would be easier to identify the problem.

link|flag
Seems like this is the kind of library I've been looking for. – Stefan Schultze Oct 2 '08 at 20:38
vote up 0 vote down

All fonts don't have data for all the glyphs that can be expressed in unicode. You´ll have to locate a suitable font which has the subset you want.

edit: Just to clarify, there are fonts which cover the full unicode range, but the one you´re using now isn´t one of them.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.