To dispaly menus,captions in indian language
-
You asked this question yesterday. I asked you the following. What is that you are using to build your application? VC6 or above? If VC6, is your app unicode aware?
Nobody can give you wiser advice than yourself. - Cicero
-
You asked this question yesterday. I asked you the following. What is that you are using to build your application? VC6 or above? If VC6, is your app unicode aware?
Nobody can give you wiser advice than yourself. - Cicero
hi I am using VC++6.0 with unicode.So i want to change my menu and captions to indian languages. abbmmm
-
hi I am using VC++6.0 with unicode.So i want to change my menu and captions to indian languages. abbmmm
Even if you are using UNICODE and _UNICODE in MFC Project settings the Application menu may not display UNICODE strings still the operating system installed has an in-built support to the UNICODE characters. If you are using Windowx XP you can setup unicode settins during the OS installation and latter through the control panel. If you still want to display unicode string in your menu you just have to use customized menus because Windows menus are OS featires.
-
You need to use appropriate resource dlls(Having marathi strings). This[^] article may help you understand this.
Prasad Notifier using ATL | Operator new[],delete[][^]
-
hi I am using VC++6.0 with unicode.So i want to change my menu and captions to indian languages. abbmmm
Good. I hope you've enabled Indic script on your computer. Prepare the unicode strings that you need to use in your app. Put it in a resource and load it at run time. Read the article suggested by prasad_som.
Nobody can give you wiser advice than yourself. - Cicero