Link to home
Start Free TrialLog in
Avatar of diplodocus
diplodocus

asked on

bilingual application with Visual C++

I want a simple example with some dialog
that i can switch from french to english at runtime

i already ready the books about internationnalisation from MSDN but there is no good example.

thanks a lot.
ASKER CERTIFIED SOLUTION
Avatar of AlexVirochovsky
AlexVirochovsky

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of diplodocus
diplodocus

ASKER

i read MSDN ??? this is the same answer

if you want excellent
answer this
where could i found an application that could do it i mean an example with coding...
this is what i want ???

thanks a lot to spend time for this answer.


 

Hi,next is examples
1. Load DLL
   hInst = LoadLibrary("mydll.dll")
2. Free Dll
   FreeLibrary(hInst);
3. Load String from Dll
   buff[81];
   LoadString(hIns, IDT_TEXT01,buff,sizeof(buff));
Alex
When you are using a new string by example "normal text" by "translated textasdasdsadasd" do you have to build another dialog to be sure that all text fit in it...

or just replace the text and that's it.
it resize automaticlly.

thanks
No , i make size of control to maximum.