Click here to Skip to main content
16,004,991 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralOnSize method Pin
Florin Ochiana19-May-03 4:25
Florin Ochiana19-May-03 4:25 
GeneralRe: OnSize method Pin
Martyn Pearson19-May-03 5:21
Martyn Pearson19-May-03 5:21 
Generalvector troubles Pin
aguest19-May-03 4:24
aguest19-May-03 4:24 
GeneralRe: vector troubles Pin
valikac19-May-03 5:43
valikac19-May-03 5:43 
GeneralRe: vector troubles Pin
aguest19-May-03 5:50
aguest19-May-03 5:50 
GeneralRe: vector troubles Pin
valikac19-May-03 6:50
valikac19-May-03 6:50 
GeneralInternationalization and Localization - questions on how to approach it Pin
Jim Crafton19-May-03 4:20
Jim Crafton19-May-03 4:20 
GeneralRe: Internationalization and Localization - questions on how to approach it Pin
Anonymous19-May-03 4:50
Anonymous19-May-03 4:50 
I18n is not a big package. It is a standard to retrieve language dependent resources. It works always the same way to retrieve e.g. a string resource from your program. If You have set a language on program startup the corresponding resource dll which the translated resources is loaded. The dlls are located according to I18n in the en,de,us,... directories below your .dll,.exe which is translated. I18n only helps You to find the proper dll for the currently selected language. Normally there is a global resource handle defined e.g.
HANDLE g_inst = 0;

If your application now does sth like CString str; str.LoadString(IDS_NAME);

Your LoadString implementation has to use the g_inst handle and all is fine.
If no translated resource exists you always have the fallback of your internal resources which you did include in the dll,.exe at compile time. You only have to use the current module handle thats all I think.


GeneralRe: Internationalization and Localization - questions on how to approach it Pin
Jim Crafton19-May-03 5:24
Jim Crafton19-May-03 5:24 
Generalget bytes sent while sending them with socket Pin
User 1605519-May-03 4:19
User 1605519-May-03 4:19 
GeneralRe: get bytes sent while sending them with socket Pin
valikac19-May-03 5:44
valikac19-May-03 5:44 
GeneralSave desktop's image Pin
Chintan19-May-03 3:53
Chintan19-May-03 3:53 
GeneralRe: Save desktop's image Pin
David Crow19-May-03 5:13
David Crow19-May-03 5:13 
GeneralRe: Save desktop's image Pin
Chintan19-May-03 19:34
Chintan19-May-03 19:34 
GeneralProblem with killing a process Pin
zakarias19-May-03 3:23
zakarias19-May-03 3:23 
GeneralRe: Problem with killing a process Pin
Martyn Pearson19-May-03 3:58
Martyn Pearson19-May-03 3:58 
GeneralRe: Problem with killing a process Pin
zakarias23-May-03 5:43
zakarias23-May-03 5:43 
Generalproblem setting text in edit box Pin
r i s h a b h s19-May-03 3:19
r i s h a b h s19-May-03 3:19 
GeneralRe: problem setting text in edit box Pin
NHM19-May-03 3:29
NHM19-May-03 3:29 
GeneralRe: problem setting text in edit box Pin
Cedric Moonen19-May-03 3:29
Cedric Moonen19-May-03 3:29 
GeneralRe: problem setting text in edit box Pin
Joan M19-May-03 3:32
professionalJoan M19-May-03 3:32 
GeneralRe: problem setting text in edit box Pin
User 665819-May-03 4:32
User 665819-May-03 4:32 
GeneralRe: problem setting text in edit box Pin
balcn19-May-03 7:22
balcn19-May-03 7:22 
General"Handle" required Pin
wavewave19-May-03 2:13
wavewave19-May-03 2:13 
GeneralRe: "Handle" required Pin
Jeremy Falcon19-May-03 5:03
professionalJeremy Falcon19-May-03 5:03 

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.