Hi all,
I'm developing a program and I want a way to print out French characters. When I post the French characters in the menu, like this
AppendMenu(hSubMenu, MF_STRING, NEW_LIST, L"ç");
The ""ç" shows with no problem. But I wanna make it to show either in an editable box, or some other way. Both ways dont work.
HWND hEdit = CreateWindowEx(
NULL,
L"Edit",
TEXT("ç"),
WS_BORDER | WS_CHILD | WS_VISIBLE,
0, 60,
100, 30,
hwnd, NULL,
ghInstance,
NULL);
This does not work. The "ç" shows as "Б", or something like that, but when i copy and paste it in other program, its "ç" again. If I paste it in the editable box its "ç". It don't show properly if the edit box is a static box for example or a list box.
Any help would be appreciated.