Click here to Skip to main content
15,923,087 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: Message Way Pin
Naveen23-May-07 23:05
Naveen23-May-07 23:05 
GeneralRe: Message Way Pin
baerten23-May-07 23:39
baerten23-May-07 23:39 
Questionneed to convert .txt format file to .xls(excel) format Pin
Krishnatv23-May-07 21:10
Krishnatv23-May-07 21:10 
AnswerRe: need to convert .txt format file to .xls(excel) format Pin
Hamid_RT24-May-07 0:57
Hamid_RT24-May-07 0:57 
AnswerRe: need to convert .txt format file to .xls(excel) format Pin
David Crow24-May-07 4:16
David Crow24-May-07 4:16 
GeneralRe: need to convert .txt format file to .xls(excel) format Pin
artihcv30-May-07 23:07
artihcv30-May-07 23:07 
GeneralRe: need to convert .txt format file to .xls(excel) format Pin
David Crow31-May-07 2:39
David Crow31-May-07 2:39 
Questioncall event of Activex in thread procedure! Pin
hameduser23-May-07 21:06
hameduser23-May-07 21:06 
QuestionRe: call event of Activex in thread procedure! Pin
Roger Stoltz23-May-07 21:26
Roger Stoltz23-May-07 21:26 
AnswerRe: call event of Activex in thread procedure! Pin
hameduser25-May-07 22:01
hameduser25-May-07 22:01 
GeneralRe: call event of Activex in thread procedure! Pin
Roger Stoltz27-May-07 22:02
Roger Stoltz27-May-07 22:02 
QuestionI know that here is not the best place to ask that, but... Pin
Nelek23-May-07 20:52
protectorNelek23-May-07 20:52 
AnswerRe: I know that here is not the best place to ask that, but... Pin
Johpoke23-May-07 21:01
Johpoke23-May-07 21:01 
GeneralRe: I know that here is not the best place to ask that, but... Pin
Nelek23-May-07 21:21
protectorNelek23-May-07 21:21 
GeneralRe: I know that here is not the best place to ask that, but... Pin
Johpoke23-May-07 22:31
Johpoke23-May-07 22:31 
QuestionC# dll from MFC application... Pin
nzhuda23-May-07 20:47
nzhuda23-May-07 20:47 
AnswerRe: C# dll from MFC application... Pin
nzhuda24-May-07 15:22
nzhuda24-May-07 15:22 
GeneralRe: C# dll from MFC application... Pin
keancaptinh12-Apr-09 20:49
keancaptinh12-Apr-09 20:49 
QuestionMultilanguage Resource compilation options Pin
XtremDev23-May-07 20:47
XtremDev23-May-07 20:47 
AnswerRe: Multilanguage Resource compilation options Pin
Nelek23-May-07 20:56
protectorNelek23-May-07 20:56 
GeneralRe: Multilanguage Resource compilation options Pin
XtremDev23-May-07 21:21
XtremDev23-May-07 21:21 
GeneralRe: Multilanguage Resource compilation options Pin
Nelek23-May-07 21:26
protectorNelek23-May-07 21:26 
AnswerRe: Multilanguage Resource compilation options [modified] Pin
Naveen23-May-07 22:39
Naveen23-May-07 22:39 
I am not sure but try this. in the rc file of your project, you can find section like

"LANGUAGE 12, 1\r\n"<br />
"#pragma code_page(1252)\r\n"<br />
"#endif //_WIN32\r\n"<br />
"#include ""res\\aaaa.rc2""  // non-Microsoft Visual C++ edited resources\r\n"<br />
"#include ""l.fra\\afxres.rc""          // Standard components\r\n"


put some predefinitions in your project before compiling and switch the language aacording to it. like..

#ifdef LAN_ENGLISH <br />
    "LANGUAGE 9, 1\r\n"<br />
    "#pragma code_page(1252)\r\n"<br />
    "#endif //_WIN32\r\n"<br />
    "#include ""res\\aaaa.rc2""  // non-Microsoft Visual C++ edited resources\r\n"<br />
    "#include ""\\afxres.rc""          // Standard components\r\n"<br />
#elseif<br />
    "LANGUAGE 12, 1\r\n"<br />
    "#pragma code_page(1252)\r\n"<br />
    "#endif //_WIN32\r\n"<br />
    "#include ""res\\aaaa.rc2""  // non-Microsoft Visual C++ edited resources\r\n"<br />
    "#include ""l.fra\\afxres.rc""          // Standard components\r\n"<br />
#endif

now if you want english before compiling put #define LAN_ENGLISH in the stdafx.h.

I would like to know whether it worked or not..Smile | :)

nave

GeneralRe: Multilanguage Resource compilation options Pin
tom groezer24-May-07 1:37
tom groezer24-May-07 1:37 
QuestionRun at .Net 2.0 (errors) Pin
Tal S.23-May-07 20:36
Tal S.23-May-07 20:36 

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.