Click here to Skip to main content
15,915,093 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: Vectors vs Arrays Pin
mcsherry12-Oct-04 23:47
mcsherry12-Oct-04 23:47 
GeneralRe: Vectors vs Arrays Pin
Mike Beckerleg13-Oct-04 0:05
Mike Beckerleg13-Oct-04 0:05 
GeneralRe: Vectors vs Arrays Pin
Kevin McFarlane13-Oct-04 6:36
Kevin McFarlane13-Oct-04 6:36 
GeneralRe: Vectors vs Arrays Pin
Maximilien13-Oct-04 0:56
Maximilien13-Oct-04 0:56 
GeneralRe: Vectors vs Arrays Pin
mcsherry13-Oct-04 2:40
mcsherry13-Oct-04 2:40 
GeneralRe: Vectors vs Arrays Pin
Kevin McFarlane13-Oct-04 6:37
Kevin McFarlane13-Oct-04 6:37 
QuestionCString += CString :: doesn't do the trick? Pin
V.12-Oct-04 22:39
professionalV.12-Oct-04 22:39 
AnswerRe: CString += CString :: doesn't do the trick? Pin
RChin12-Oct-04 23:21
RChin12-Oct-04 23:21 
Ignore my response below; I didn't see the CString title!D'Oh! | :doh:
The first thing that comes to mind why it would not visually append would be that line is not null terminated.
Also I think the debug watch window only displays string values up to a certain length, then its truncated. I know that this was so for VS6, not sure for VS.7

[EDIT]

That is because
text += " "cannot be used on string variables.
I am assuming that text is a character buffer. If this is the case try:
..
_tcscat(text,_T(" "));// you could also use strcat() for non-unicode progs.
_tcscat(text,line);
..

[/EDIT]




I Dream of Absolute Zero

GeneralRe: CString += CString :: doesn't do the trick? Pin
V.12-Oct-04 23:32
professionalV.12-Oct-04 23:32 
AnswerRe: CString += CString :: doesn't do the trick? Pin
David Crow13-Oct-04 3:39
David Crow13-Oct-04 3:39 
GeneralRe: CString += CString :: doesn't do the trick? Pin
V.13-Oct-04 4:39
professionalV.13-Oct-04 4:39 
AnswerRe: CString += CString :: doesn't do the trick? Pin
Phil J Pearson14-Oct-04 5:15
Phil J Pearson14-Oct-04 5:15 
Generalthread safe lazy singleton intialization Pin
peterchen12-Oct-04 22:09
peterchen12-Oct-04 22:09 
GeneralRe: thread safe lazy singleton intialization Pin
Joaquín M López Muñoz13-Oct-04 0:19
Joaquín M López Muñoz13-Oct-04 0:19 
GeneralRe: thread safe lazy singleton intialization Pin
peterchen13-Oct-04 1:52
peterchen13-Oct-04 1:52 
GeneralRe: thread safe lazy singleton intialization Pin
Neville Franks13-Oct-04 0:30
Neville Franks13-Oct-04 0:30 
GeneralRe: thread safe lazy singleton intialization Pin
peterchen13-Oct-04 2:18
peterchen13-Oct-04 2:18 
GeneralRe: thread safe lazy singleton intialization Pin
Joaquín M López Muñoz13-Oct-04 3:26
Joaquín M López Muñoz13-Oct-04 3:26 
GeneralRe: thread safe lazy singleton intialization Pin
Neville Franks13-Oct-04 9:31
Neville Franks13-Oct-04 9:31 
GeneralRe: thread safe lazy singleton intialization Pin
Joaquín M López Muñoz13-Oct-04 10:01
Joaquín M López Muñoz13-Oct-04 10:01 
GeneralRe: thread safe lazy singleton intialization Pin
Neville Franks13-Oct-04 10:29
Neville Franks13-Oct-04 10:29 
GeneralRe: thread safe lazy singleton intialization Pin
peterchen13-Oct-04 9:51
peterchen13-Oct-04 9:51 
GeneralRe: thread safe lazy singleton intialization Pin
Neville Franks13-Oct-04 10:54
Neville Franks13-Oct-04 10:54 
GeneralRe: thread safe lazy singleton intialization Pin
peterchen13-Oct-04 2:24
peterchen13-Oct-04 2:24 
General2 questions about working with files Pin
Ernesto D.12-Oct-04 21:51
Ernesto D.12-Oct-04 21:51 

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.