Click here to Skip to main content
15,868,016 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
AnswerRe: Debugging application minidump using windbg Pin
Sarath C10-Jun-11 2:27
Sarath C10-Jun-11 2:27 
QuestionC++ expression evaluation. Pin
Sameerkumar Namdeo9-Jun-11 22:57
Sameerkumar Namdeo9-Jun-11 22:57 
AnswerRe: C++ expression evaluation. Pin
CPallini10-Jun-11 0:25
mveCPallini10-Jun-11 0:25 
AnswerRe: C++ expression evaluation. Pin
Luc Pattyn10-Jun-11 1:03
sitebuilderLuc Pattyn10-Jun-11 1:03 
AnswerRe: C++ expression evaluation. Pin
Sameerkumar Namdeo12-Jun-11 20:39
Sameerkumar Namdeo12-Jun-11 20:39 
AnswerRe: C++ expression evaluation. Pin
Niklas L12-Jun-11 21:26
Niklas L12-Jun-11 21:26 
Questioninternationalisation Pin
Kyudos9-Jun-11 12:52
Kyudos9-Jun-11 12:52 
AnswerRe: internationalisation Pin
Sameerkumar Namdeo9-Jun-11 23:08
Sameerkumar Namdeo9-Jun-11 23:08 
All you need to know is unicode.
all the text strings should be converted to unicode format.
[1]make a collection\ identify of all the readable text string on your apps gui.
[2]convert all the char buffers used to process the text strings to wchar buffers (char : 1 bytes and wchar 2:bytes)
[3]MFC CString will automatically behave as unicode when you declare your app as unicode application either by mentioning
#define UNICODE
#define _UNICODE
in stdafx.h or some global file which is accesible to all the other files.
You may also use app property dialog to declare your app as unicode.
While convering text from ansi to unicode, WideCharToMultiByte and MultiByteToWideChar APIs will be required.

this is just some hints to proceed...you may be required to do other tasks as appropriate depending upon your app.

GeneralRe: internationalisation Pin
Mattias G9-Jun-11 23:26
Mattias G9-Jun-11 23:26 
GeneralRe: internationalisation Pin
Kyudos12-Jun-11 10:56
Kyudos12-Jun-11 10:56 
AnswerRe: internationalisation Pin
jschell10-Jun-11 12:47
jschell10-Jun-11 12:47 
AnswerRe: internationalisation Pin
Abhi Lahare13-Jun-11 6:49
Abhi Lahare13-Jun-11 6:49 
GeneralRe: internationalisation Pin
Kyudos14-Jun-11 10:50
Kyudos14-Jun-11 10:50 
GeneralRe: internationalisation Pin
Abhi Lahare14-Jun-11 11:29
Abhi Lahare14-Jun-11 11:29 
QuestionWant to find Rightmost top point from the CPoint List Pin
Abhijit_Satpute9-Jun-11 8:27
Abhijit_Satpute9-Jun-11 8:27 
AnswerRe: Want to find Rightmost top point from the CPoint List Pin
MicroVirus9-Jun-11 10:03
MicroVirus9-Jun-11 10:03 
AnswerRe: Want to find Rightmost top point from the CPoint List Pin
Richard MacCutchan9-Jun-11 10:32
mveRichard MacCutchan9-Jun-11 10:32 
AnswerRe: Want to find Rightmost top point from the CPoint List Pin
CPallini9-Jun-11 22:09
mveCPallini9-Jun-11 22:09 
AnswerRe: Want to find Rightmost top point from the CPoint List Pin
Stefan_Lang15-Jun-11 2:46
Stefan_Lang15-Jun-11 2:46 
QuestionUsing C# in C++ Pin
Chris_Green8-Jun-11 23:54
Chris_Green8-Jun-11 23:54 
AnswerRe: Using C# in C++ Pin
CPallini9-Jun-11 0:24
mveCPallini9-Jun-11 0:24 
GeneralRe: Using C# in C++ Pin
Chris_Green9-Jun-11 0:54
Chris_Green9-Jun-11 0:54 
GeneralRe: Using C# in C++ Pin
Rolf Kristensen9-Jun-11 8:43
Rolf Kristensen9-Jun-11 8:43 
GeneralRe: Using C# in C++ Pin
CPallini9-Jun-11 22:03
mveCPallini9-Jun-11 22:03 
AnswerRe: Using C# in C++ Pin
ThatsAlok13-Jun-11 21:14
ThatsAlok13-Jun-11 21:14 

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.