Click here to Skip to main content
15,890,399 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: Windows API comunicate with console C program Pin
David Crow6-May-03 6:12
David Crow6-May-03 6:12 
GeneralRe: Windows API comunicate with console C program Pin
franklyflee6-May-03 6:52
franklyflee6-May-03 6:52 
GeneralRe: Windows API comunicate with console C program Pin
David Crow6-May-03 6:57
David Crow6-May-03 6:57 
GeneralRe: Windows API comunicate with console C program Pin
franklyflee6-May-03 7:18
franklyflee6-May-03 7:18 
GeneralRe: Windows API comunicate with console C program Pin
franklyflee6-May-03 15:12
franklyflee6-May-03 15:12 
GeneralRe: Windows API comunicate with console C program Pin
franklyflee6-May-03 16:14
franklyflee6-May-03 16:14 
Generalunicode Pin
alex.barylski6-May-03 5:42
alex.barylski6-May-03 5:42 
GeneralRe: unicode Pin
Phil Hamer6-May-03 13:34
Phil Hamer6-May-03 13:34 
There's lots of good tutorials on Unicode and Windows programming. Check those out, but basically you would define _UNICODE in your Project/Settings, and in place of "char" use "wchar_t", and string literals have "L" before them (e.g., L"a string"). But the best way is to use the "tchar.h" file's macros so that you don't have to change your source code when you change back and forth from _UNICODE to _MBCS. (use "TCHAR" instead of "char", and wrap string literals with the _T() macro (e.g., _T("a string")).
GeneralRe: unicode Pin
alex.barylski6-May-03 14:47
alex.barylski6-May-03 14:47 
GeneralNeed to create Document and Excel in vc++ Pin
harinath6-May-03 5:24
professionalharinath6-May-03 5:24 
GeneralRe: Need to create Document and Excel in vc++ Pin
David Crow6-May-03 5:38
David Crow6-May-03 5:38 
GeneralRe: Need to create Document and Excel in vc++ Pin
Anonymous6-May-03 7:52
Anonymous6-May-03 7:52 
GeneralRe: Need to create Document and Excel in vc++ Pin
Michael Pauli7-May-03 0:49
Michael Pauli7-May-03 0:49 
GeneralRe: Need to create Document and Excel in vc++ Pin
David Crow7-May-03 2:23
David Crow7-May-03 2:23 
GeneralRe: Need to create Document and Excel in vc++ Pin
Dimitris Vasiliadis6-May-03 7:39
Dimitris Vasiliadis6-May-03 7:39 
GeneralRe: Need to create Document and Excel in vc++ Pin
harinath6-May-03 7:57
professionalharinath6-May-03 7:57 
QuestionHow to get all the controls in a CDialog? Pin
melwyn6-May-03 5:19
melwyn6-May-03 5:19 
AnswerRe: How to get all the controls in a CDialog? Pin
harinath6-May-03 5:22
professionalharinath6-May-03 5:22 
GeneralRe: How to get all the controls in a CDialog? Pin
basementman6-May-03 5:45
basementman6-May-03 5:45 
GeneralRe: How to get all the controls in a CDialog? Pin
melwyn8-May-03 1:28
melwyn8-May-03 1:28 
GeneralRe: How to get all the controls in a CDialog? Pin
melwyn7-May-03 22:47
melwyn7-May-03 22:47 
Questionhow to rotate text without having to select another font Pin
didida6-May-03 5:02
sussdidida6-May-03 5:02 
AnswerRe: how to rotate text without having to select another font Pin
basementman6-May-03 6:08
basementman6-May-03 6:08 
GeneralPls Help Me. Pin
stilgar6-May-03 4:54
stilgar6-May-03 4:54 
GeneralCopy a pointer to an element of an array of pointers Pin
Majid Shahabfar6-May-03 4:13
Majid Shahabfar6-May-03 4:13 

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.