Click here to Skip to main content
15,901,666 members
Home / Discussions / ATL / WTL / STL
   

ATL / WTL / STL

 
QuestionConvert MFC dll To UNICODE Pin
MrKBA8-Dec-11 0:04
MrKBA8-Dec-11 0:04 
AnswerRe: Convert MFC dll To UNICODE Pin
Richard MacCutchan8-Dec-11 0:28
mveRichard MacCutchan8-Dec-11 0:28 
You also need to make sure all your string literals ar changed from char to TCHAR with the _T() macro like this:
C++
const char* cp = "Ansi string";       // old style char literal
PCTSTR tcp = _T("TCHAR string"); // will generate Ansi or Unicode depending on project settings

After that, the only way to be certain you have it right is to desk check and test. There may be some free tools around to help verify it but I'm not aware of them; Google may help you.
Unrequited desire is character building. OriginalGriff
I'm sitting here giving you a standing ovation - Len Goodman



AnswerRe: Convert MFC dll To UNICODE Pin
Richard MacCutchan8-Dec-11 1:09
mveRichard MacCutchan8-Dec-11 1:09 
GeneralRe: Convert MFC dll To UNICODE Pin
MrKBA8-Dec-11 1:52
MrKBA8-Dec-11 1:52 
GeneralRe: Convert MFC dll To UNICODE Pin
Richard MacCutchan8-Dec-11 2:13
mveRichard MacCutchan8-Dec-11 2:13 
GeneralRe: Convert MFC dll To UNICODE Pin
MrKBA8-Dec-11 21:49
MrKBA8-Dec-11 21:49 
GeneralRe: Convert MFC dll To UNICODE Pin
Richard MacCutchan8-Dec-11 22:09
mveRichard MacCutchan8-Dec-11 22:09 
GeneralRe: Convert MFC dll To UNICODE Pin
MrKBA26-Dec-11 1:04
MrKBA26-Dec-11 1:04 
GeneralRe: Convert MFC dll To UNICODE Pin
Richard MacCutchan26-Dec-11 6:51
mveRichard MacCutchan26-Dec-11 6:51 
GeneralRe: Convert MFC dll To UNICODE Pin
MrKBA26-Dec-11 22:19
MrKBA26-Dec-11 22:19 
GeneralRe: Convert MFC dll To UNICODE Pin
Richard MacCutchan27-Dec-11 0:14
mveRichard MacCutchan27-Dec-11 0:14 
QuestionLinking error when compiling projects Pin
bubuzzz28-Nov-11 0:51
bubuzzz28-Nov-11 0:51 
AnswerRe: Linking error when compiling projects Pin
Richard MacCutchan28-Nov-11 1:02
mveRichard MacCutchan28-Nov-11 1:02 
GeneralRe: Linking error when compiling projects Pin
bubuzzz29-Nov-11 3:28
bubuzzz29-Nov-11 3:28 
GeneralRe: Linking error when compiling projects Pin
Redgis30-Nov-11 22:26
Redgis30-Nov-11 22:26 
GeneralRe: Linking error when compiling projects Pin
Gene OK6-Dec-11 4:54
Gene OK6-Dec-11 4:54 
QuestionTransparent image as background of a window. How? Pin
Frozzeg12-Nov-11 1:11
Frozzeg12-Nov-11 1:11 
AnswerRe: Transparent image as background of a window. How? Pin
Richard MacCutchan12-Nov-11 3:08
mveRichard MacCutchan12-Nov-11 3:08 
GeneralRe: Transparent image as background of a window. How? Pin
Frozzeg12-Nov-11 5:37
Frozzeg12-Nov-11 5:37 
GeneralRe: Transparent image as background of a window. How? Pin
Richard MacCutchan12-Nov-11 6:32
mveRichard MacCutchan12-Nov-11 6:32 
AnswerRe: Transparent image as background of a window. How? Pin
Albert Holguin22-Nov-11 5:06
professionalAlbert Holguin22-Nov-11 5:06 
QuestionConvert Japanese charaters to multiByte Pin
anandvtra9-Nov-11 17:12
anandvtra9-Nov-11 17:12 
AnswerRe: Convert Japanese charaters to multiByte Pin
Richard MacCutchan9-Nov-11 22:27
mveRichard MacCutchan9-Nov-11 22:27 
QuestionAdding atl support to existing mfc application Pin
Coder Block7-Nov-11 19:29
Coder Block7-Nov-11 19:29 
QuestionVisual Leak Detector => Memory leaks on system functions? Pin
sypt4-Nov-11 23:00
sypt4-Nov-11 23:00 

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.