A hard one:)) Changing resource language
-
I have this problem : I wrote a program with German and English resources . I would like to be able to change the resource language during program execution , or at least to load the correct resources at start time . In Win2000 I changed the location to German but it loads the English resources. At WinNT it works...What can I do in Win2000? plz..plz...plz :confused: Jancsi
-
I have this problem : I wrote a program with German and English resources . I would like to be able to change the resource language during program execution , or at least to load the correct resources at start time . In Win2000 I changed the location to German but it loads the English resources. At WinNT it works...What can I do in Win2000? plz..plz...plz :confused: Jancsi
Place all your resources in the different DLLs, for each language one DLL, then load one of the DLL at program startup (e.g. InitInstance()) and set it with AfxSetResourceHandle() as a source for your resources. Martin