Click here to Skip to main content
15,902,749 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: Curious COM question - the case of the second exe server... Pin
CPallini15-May-09 7:49
mveCPallini15-May-09 7:49 
GeneralRe: Curious COM question - the case of the second exe server... Pin
Jim Crafton15-May-09 8:02
Jim Crafton15-May-09 8:02 
GeneralRe: Curious COM question - the case of the second exe server... Pin
CPallini15-May-09 11:48
mveCPallini15-May-09 11:48 
JokeRe: Curious COM question - the case of the second exe server... Pin
Rajesh R Subramanian16-May-09 1:50
professionalRajesh R Subramanian16-May-09 1:50 
GeneralRe: Curious COM question - the case of the second exe server... Pin
CPallini16-May-09 2:06
mveCPallini16-May-09 2:06 
GeneralRe: Curious COM question - the case of the second exe server... Pin
Jim Crafton15-May-09 7:55
Jim Crafton15-May-09 7:55 
GeneralRe: Curious COM question - the case of the second exe server... Pin
Rajesh R Subramanian15-May-09 23:23
professionalRajesh R Subramanian15-May-09 23:23 
Questionhi Pin
Mohammadj15-May-09 5:28
Mohammadj15-May-09 5:28 
AnswerRe: hi Pin
David Crow15-May-09 7:04
David Crow15-May-09 7:04 
GeneralWelcome again! Pin
CPallini15-May-09 7:28
mveCPallini15-May-09 7:28 
GeneralRe: hi Pin
Mohammadj15-May-09 9:04
Mohammadj15-May-09 9:04 
AnswerRe: hi Pin
David Crow15-May-09 9:15
David Crow15-May-09 9:15 
GeneralRe: hi Pin
Mohammadj15-May-09 9:30
Mohammadj15-May-09 9:30 
GeneralRe: hi Pin
David Crow15-May-09 9:35
David Crow15-May-09 9:35 
GeneralRe: hi Pin
Mohammadj15-May-09 9:37
Mohammadj15-May-09 9:37 
QuestionRe: hi Pin
David Crow15-May-09 10:17
David Crow15-May-09 10:17 
AnswerRe: hi Pin
Mohammadj15-May-09 10:23
Mohammadj15-May-09 10:23 
QuestionRe: hi Pin
David Crow15-May-09 10:29
David Crow15-May-09 10:29 
AnswerRe: hi Pin
CPallini15-May-09 11:51
mveCPallini15-May-09 11:51 
GeneralRe: hi Pin
Mohammadj15-May-09 22:49
Mohammadj15-May-09 22:49 
QuestionReading a txt file fastly Pin
Raghav071015-May-09 5:09
Raghav071015-May-09 5:09 
AnswerRe: Reading a txt file fastly Pin
led mike15-May-09 5:15
led mike15-May-09 5:15 
AnswerRe: Reading a txt file fastly Pin
«_Superman_»15-May-09 5:17
professional«_Superman_»15-May-09 5:17 
You can get more speed if you're ready to use up more memory.
Read the entire file into a CString variable.
And then use CString::Tokenize to read each field.

The CString variable will use up enough memory to load the entire file.
Or you can logically divide the file into fixed size chunks and read one chunk at a time and do the same processing.

«_Superman
I love work. It gives me something to do between weekends.

AnswerRe: Reading a txt file fastly Pin
Stuart Dootson15-May-09 5:20
professionalStuart Dootson15-May-09 5:20 
AnswerRe: Reading a txt file fastly Pin
David Crow15-May-09 7:00
David Crow15-May-09 7: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.