Click to See Complete Forum and Search --> : URGENT: HOw can I display Chinese characters in the main menu??


Steve Chia
May 12th, 1999, 11:17 PM
Hi,

I would like to ask how I can display Chinese characters in my application's main menu running on the English version of
Windows 95. I have a third party software which is capable of displaying Chinese characters in the English environment.

I could get my toolbar and text in my window/dialogs to change but not the main menu. I'm using a Chinese resource DLL
which is compiled in the Chinese version of Windows 95. The following code are used to load the new menu when the
resource is changed :

hCurrentModule = LoadLibrary("resource.dll");
ASSERT (hCurrentModule);
AfxSetResourceHandle(hCurrentModule);

new_menu.LoadMenu(IDR_MAINFRAME);
SetMenu(&new_menu);
DrawMenuBar();
new_menu.Detach();

Thank you
Steve Chia