Displaying Korean/Chinese Characters???
-
I wanna display Korean characters in my application's UI. I have done the following. 1. Defined _UNICODE in Preprocessor definitions (C++ Tab) in settings of the project 2. Added the entry point symbol wWinMainCRTStartup in the Link Tab. 3. Changed the codepage in the rc file. 4. I added the korean charachters in the String table in the script file. 5. I used the LoadString(IDS_TITLE) to get the korean characters from the resource string table. But the characters are not displayed in the UI. Am I missing anything else? Could anyone help me. Thanks in advance.
-
I wanna display Korean characters in my application's UI. I have done the following. 1. Defined _UNICODE in Preprocessor definitions (C++ Tab) in settings of the project 2. Added the entry point symbol wWinMainCRTStartup in the Link Tab. 3. Changed the codepage in the rc file. 4. I added the korean charachters in the String table in the script file. 5. I used the LoadString(IDS_TITLE) to get the korean characters from the resource string table. But the characters are not displayed in the UI. Am I missing anything else? Could anyone help me. Thanks in advance.
Make sure that resource file was saved with correct unicode encoding. Because of VC++ 6 did not support editting unicode text in its IDE, you may have to open resource script file in an external unicode-based editor to create string resource and save it in unicode format. Try VS.NET 2005 Express, it is free version all fully supporting Unicode.
-
Make sure that resource file was saved with correct unicode encoding. Because of VC++ 6 did not support editting unicode text in its IDE, you may have to open resource script file in an external unicode-based editor to create string resource and save it in unicode format. Try VS.NET 2005 Express, it is free version all fully supporting Unicode.
-
I wanna display Korean characters in my application's UI. I have done the following. 1. Defined _UNICODE in Preprocessor definitions (C++ Tab) in settings of the project 2. Added the entry point symbol wWinMainCRTStartup in the Link Tab. 3. Changed the codepage in the rc file. 4. I added the korean charachters in the String table in the script file. 5. I used the LoadString(IDS_TITLE) to get the korean characters from the resource string table. But the characters are not displayed in the UI. Am I missing anything else? Could anyone help me. Thanks in advance.
And see Easy text document conversion - ANSI/Unicode and Unicode/ANSI[^] maybe it is some helpful to you
_**
**_
WhiteSky