Click here to Skip to main content
16,011,743 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
QuestionToolbar buttons - adding text to the right of icons? Pin
LukeV19-Jun-03 13:33
LukeV19-Jun-03 13:33 
AnswerRe: Toolbar buttons - adding text to the right of icons? Pin
Michael Dunn19-Jun-03 14:44
sitebuilderMichael Dunn19-Jun-03 14:44 
GeneralRe: Toolbar buttons - adding text to the right of icons? Pin
LukeV19-Jun-03 14:52
LukeV19-Jun-03 14:52 
Generallink file with application Pin
aguest19-Jun-03 12:14
aguest19-Jun-03 12:14 
GeneralRe: link file with application Pin
Navin19-Jun-03 15:45
Navin19-Jun-03 15:45 
Generalcout with Unicode strings Pin
Phil Hamer19-Jun-03 12:07
Phil Hamer19-Jun-03 12:07 
GeneralRe: cout with Unicode strings Pin
Nemanja Trifunovic19-Jun-03 12:46
Nemanja Trifunovic19-Jun-03 12:46 
GeneralRe: cout with Unicode strings Pin
Phil Hamer19-Jun-03 13:13
Phil Hamer19-Jun-03 13:13 
Aaaaahhhhhh... there's a wcout! It's funny, because the AppWizard (at least in VC6) generates this for a default console app:

cerr << _T("Fatal Error: MFC initialization failed") << endl;

which if compiled with UNICODE, would print out the address of the string.

I guess I'll have to do something like

<br />
#ifdef UNICODE<br />
#define _tcout wcout<br />
#else<br />
#define _tcout cout<br />
#endif<br />


in order to have some kind of "tchar-ish" macro, 'cause I can't find one already defined.
GeneralRe: cout with Unicode strings Pin
Navin19-Jun-03 15:40
Navin19-Jun-03 15:40 
GeneralSplitter Mouse Wheel problem Pin
vadimpl19-Jun-03 11:08
vadimpl19-Jun-03 11:08 
GeneralRe: Splitter Mouse Wheel problem Pin
Anonymous19-Jun-03 16:51
Anonymous19-Jun-03 16:51 
QuestionHow do I extract ALL records from buffer using strstr.. Pin
IrishSonic19-Jun-03 10:52
IrishSonic19-Jun-03 10:52 
AnswerRe: How do I extract ALL records from buffer using strstr.. Pin
valikac19-Jun-03 11:33
valikac19-Jun-03 11:33 
AnswerRe: How do I extract ALL records from buffer using strstr.. Pin
basementman19-Jun-03 11:33
basementman19-Jun-03 11:33 
GeneralRe: How do I extract ALL records from buffer using strstr.. Pin
IrishSonic19-Jun-03 12:31
IrishSonic19-Jun-03 12:31 
GeneralRe: How do I extract ALL records from buffer using strstr.. Pin
basementman19-Jun-03 15:21
basementman19-Jun-03 15:21 
GeneralC++ Pin
Mark J Jackson19-Jun-03 10:34
Mark J Jackson19-Jun-03 10:34 
GeneralRe: C++ Pin
Trollslayer19-Jun-03 10:42
mentorTrollslayer19-Jun-03 10:42 
GeneralRe: C++ Pin
Michael Dunn19-Jun-03 12:02
sitebuilderMichael Dunn19-Jun-03 12:02 
Generalgood BOOKS on MFC C++ Pin
19-Jun-03 10:07
suss19-Jun-03 10:07 
GeneralRe: good BOOKS on MFC C++ Pin
Brian Delahunty19-Jun-03 10:26
Brian Delahunty19-Jun-03 10:26 
GeneralRe: good BOOKS on MFC C++ Pin
VikramDelhi19-Jun-03 11:13
VikramDelhi19-Jun-03 11:13 
GeneralRe: good BOOKS on MFC C++ Pin
Brian Delahunty20-Jun-03 3:09
Brian Delahunty20-Jun-03 3:09 
GeneralRe: good BOOKS on MFC C++ Pin
Phil Hamer19-Jun-03 12:09
Phil Hamer19-Jun-03 12:09 
QuestionVertical Aligned CEdit? Pin
Nick Jacobs19-Jun-03 9:36
Nick Jacobs19-Jun-03 9: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.