Click here to Skip to main content
15,867,568 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hi,

We are having an application written in VC++6.0, Can anybody tell me how to show some texts on dialog from English to Chinese.


Thanks in advance.
Sheetal.
Posted

1 solution

You can display Chinese characters by using Unicode for all your character strings and ensuring that your PC has Chinese fonts installed.
So you could create a string in your code like this:
C++
WCHAR chineseText[] = { L"顳钂爧" };

My apologies if these characters spell an obscene or insulting word.
 
Share this answer
 
v3

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900