Click here to Skip to main content
15,889,281 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: TextOut problems Pin
franklyflee11-May-03 1:04
franklyflee11-May-03 1:04 
GeneralRe: TextOut problems Pin
Joe Woodbury11-May-03 6:23
professionalJoe Woodbury11-May-03 6:23 
GeneralRe: TextOut problems Pin
franklyflee11-May-03 6:38
franklyflee11-May-03 6:38 
GeneralRe: TextOut problems Pin
Joe Woodbury11-May-03 6:52
professionalJoe Woodbury11-May-03 6:52 
General[how to] multi-language/unicode application Pin
zecodela10-May-03 23:00
zecodela10-May-03 23:00 
GeneralRe: [how to] multi-language/unicode application Pin
Ted Ferenc11-May-03 1:21
Ted Ferenc11-May-03 1:21 
GeneralRe: [how to] multi-language/unicode application Pin
zecodela11-May-03 2:59
zecodela11-May-03 2:59 
GeneralRe: [how to] multi-language/unicode application Pin
Ted Ferenc11-May-03 4:08
Ted Ferenc11-May-03 4:08 
I can't speak Chinese, ony Polish! Using a resource only DLL means you have to define the menus, dialogs etc. in each language for each resource only DLL. Then when a new resource only DLL is loaded, the Menus Dialogs etc. from the new DLL will be used, rather that the default resources.

But if you just want to use a French text string on and English Dialog box you could do:-

hInstFrench = LoadLibrary(_T("LangFRA.dll"));<br />
LoadString(hInstFrench, ID_TEXT, lpBuffer, nBuffSize);<br />
SetWindowText(hWnd, lpBuffer);


I hope this helps. This is one solution there are many others.



If I have seen further it is by standing on the shoulders of Giants. - Isaac Newton 1676
GeneralRe: [how to] multi-language/unicode application Pin
zecodela11-May-03 7:05
zecodela11-May-03 7:05 
GeneralRe: [how to] multi-language/unicode application Pin
Ted Ferenc11-May-03 7:16
Ted Ferenc11-May-03 7:16 
GeneralRe: [how to] multi-language/unicode application Pin
zecodela11-May-03 23:36
zecodela11-May-03 23:36 
GeneralRe: [how to] multi-language/unicode application Pin
Ted Ferenc12-May-03 0:06
Ted Ferenc12-May-03 0:06 
GeneralRe: [how to] multi-language/unicode application Pin
zecodela12-May-03 0:58
zecodela12-May-03 0:58 
GeneralRe: [how to] multi-language/unicode application Pin
Anonymous12-May-03 3:46
Anonymous12-May-03 3:46 
GeneralPassing a va_list to printf Pin
Jo Fredrickson10-May-03 20:37
Jo Fredrickson10-May-03 20:37 
GeneralRe: Passing a va_list to printf Pin
Johnny ²10-May-03 21:30
Johnny ²10-May-03 21:30 
GeneralRe: Passing a va_list to printf Pin
Jo Fredrickson10-May-03 22:15
Jo Fredrickson10-May-03 22:15 
QuestionPossible solutions to my problem? Pin
georgiek5010-May-03 17:40
georgiek5010-May-03 17:40 
AnswerRe: Possible solutions to my problem? Pin
G. Steudtel12-May-03 1:50
G. Steudtel12-May-03 1:50 
GeneralDialog box Handle where to find it Pin
WinNewbie10-May-03 15:24
sussWinNewbie10-May-03 15:24 
GeneralRe: Dialog box Handle where to find it Pin
Michael Dunn10-May-03 17:12
sitebuilderMichael Dunn10-May-03 17:12 
GeneralRe: Dialog box Handle where to find it Pin
Win Newbie11-May-03 2:39
sussWin Newbie11-May-03 2:39 
GeneralRe: Dialog box Handle where to find it Pin
WinNewbie12-May-03 6:19
sussWinNewbie12-May-03 6:19 
GeneralHave split up string, but there must be a better way of doing this!! Pin
IrishSonic10-May-03 14:18
IrishSonic10-May-03 14:18 
GeneralRe: Have split up string, but there must be a better way of doing this!! Pin
Bartosz Bien10-May-03 14:24
Bartosz Bien10-May-03 14:24 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.