Click here to Skip to main content
16,004,761 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralTree Item Position Pin
Steve L.21-Apr-02 7:47
Steve L.21-Apr-02 7:47 
GeneralRe: Tree Item Position Pin
Alwin7521-Apr-02 8:10
Alwin7521-Apr-02 8:10 
GeneralRe: Tree Item Position Pin
Steve L.21-Apr-02 8:17
Steve L.21-Apr-02 8:17 
QuestionAny fast File read/write method? Pin
21-Apr-02 7:30
suss21-Apr-02 7:30 
AnswerRe: Any fast File read/write method? Pin
Mazdak21-Apr-02 7:37
Mazdak21-Apr-02 7:37 
AnswerRe: Any fast File read/write method? Pin
Alwin7521-Apr-02 8:19
Alwin7521-Apr-02 8:19 
GeneralRe: Any fast File read/write method? Pin
Paul M Watt21-Apr-02 9:08
mentorPaul M Watt21-Apr-02 9:08 
AnswerRe: Any fast File read/write method? Pin
Peter Molnar21-Apr-02 14:46
Peter Molnar21-Apr-02 14:46 
why don't you try this in pure c?
e.g.:

FILE *fp1;
char word[100];
char c;

fp1 = fopen("yourfile.txt", "r");

do 
{
   c = fscanf(fp1, "%s", word); // read a word 
   DoSomethingWith(word);     
}while (c != EOF);              // until end of file    


fclose(fp1);



Bunburry
GeneralRe: Any fast File read/write method? Pin
Paul M Watt21-Apr-02 15:08
mentorPaul M Watt21-Apr-02 15:08 
AnswerRe: Any fast File read/write method? Pin
Matt Gullett21-Apr-02 15:11
Matt Gullett21-Apr-02 15:11 
GeneralLinker Error Pin
Gaurika Wijeratne21-Apr-02 6:47
Gaurika Wijeratne21-Apr-02 6:47 
GeneralRe: Linker Error Pin
moliate21-Apr-02 12:09
moliate21-Apr-02 12:09 
GeneralRe: Linker Error Pin
Gaurika Wijeratne21-Apr-02 21:40
Gaurika Wijeratne21-Apr-02 21:40 
GeneralRe: Linker Error Pin
moliate22-Apr-02 4:53
moliate22-Apr-02 4:53 
GeneralRe: Linker Error Pin
Gaurika Wijeratne23-Apr-02 9:12
Gaurika Wijeratne23-Apr-02 9:12 
GeneralRe: Linker Error Pin
Tim Smith23-Apr-02 9:28
Tim Smith23-Apr-02 9:28 
GeneralInteresting Multithreading Problem :: MFC Pin
valikac21-Apr-02 6:16
valikac21-Apr-02 6:16 
GeneralRe: Interesting Multithreading Problem :: MFC Pin
Paul M Watt21-Apr-02 9:13
mentorPaul M Watt21-Apr-02 9:13 
GeneralRe: Interesting Multithreading Problem :: MFC Pin
valikac21-Apr-02 9:26
valikac21-Apr-02 9:26 
GeneralRe: Interesting Multithreading Problem :: MFC Pin
Paul M Watt21-Apr-02 10:13
mentorPaul M Watt21-Apr-02 10:13 
GeneralRe: Interesting Multithreading Problem :: MFC Pin
valikac21-Apr-02 11:14
valikac21-Apr-02 11:14 
GeneralRe: Alternatives Pin
valikac22-Apr-02 10:36
valikac22-Apr-02 10:36 
QuestionHow can I make the text backmode tranparent for an edit box without re-output the text? Pin
Uzi21-Apr-02 5:38
Uzi21-Apr-02 5:38 
AnswerRe: How can I make the text backmode tranparent for an edit box without re-output the text? Pin
Joaquín M López Muñoz21-Apr-02 5:49
Joaquín M López Muñoz21-Apr-02 5:49 
GeneralThread Synchronization :: MFC Pin
valikac21-Apr-02 5:31
valikac21-Apr-02 5:31 

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.