vote up 0 vote down star

Hello there,

maybe anyone have ideas of how to display Chinese characters in the ListView control ?

flag

64% accept rate
What problems do you have exactly? – Johannes Rössel Nov 5 at 8:23
It displays "???????" instead of Chinese characters. Thats, I think, is the main problem. – Lukas Šalkauskas Nov 5 at 8:31
What windows version? You could try going into Control Panel and setting region to China PRC to see if it works on a system level. – Anders Karlsson Nov 5 at 8:50
I normally do that to check time/date, if they work then it should work in your app. – Anders Karlsson Nov 5 at 8:51
Lukas: Does saving your source files as Unicode (UTF-8, UTF-16, whatever) help? Both .NET and the Windows API should support Unicode just fine. Explorer itself is just a glorified ListView and it has no problems displaying files with CJK in them. – Johannes Rössel Nov 5 at 8:53
show 4 more comments

1 Answer

vote up 1 vote down

Ensure you have Chinese character capabilities on your actual machine and browser:

http://www.jp41.com/internet-explorer/chinese/

If you've done that and it's still a problem, perhaps you are getting data from a database that has been input as Chinese, but the data type on the relevant column isn't Unicode. In which case make change the data type to for example, nvarchar.

link|flag

Your Answer

Get an OpenID
or

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