Click here to Skip to main content
15,897,518 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
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 
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 
The problem lies in
fscanf(readfile, "%s", line);


You cannot pass a CString variable as the parameter to fscanf. In this case it needs a char *

You will have to use a char array, or perhaps line.GetBufferSerLength(?) (see MSDN)

In either case you'll have to have some idea of the expected line length and cope with the possibility of buffer overflow. Think about a complete redesign.


The opinions expressed in this communication do not necessarily represent those of the author (especially if you find them impolite, discourteous or inflammatory).
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 
GeneralRe: 2 questions about working with files Pin
Graham Bradshaw12-Oct-04 22:18
Graham Bradshaw12-Oct-04 22:18 
GeneralRe: 2 questions about working with files Pin
Ernesto D.13-Oct-04 7:05
Ernesto D.13-Oct-04 7:05 
GeneralRe: 2 questions about working with files Pin
bolivar12313-Oct-04 8:54
bolivar12313-Oct-04 8:54 
GeneralRAS (Remote access service) Pin
Member 143564812-Oct-04 21:26
Member 143564812-Oct-04 21:26 

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.