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

C / C++ / MFC

 
GeneralRe: Freeze entire screen Pin
baerten13-Aug-08 22:51
baerten13-Aug-08 22:51 
GeneralRe: Freeze entire screen Pin
Alan Balkany14-Aug-08 3:35
Alan Balkany14-Aug-08 3:35 
AnswerRe: Freeze entire screen Pin
Bram van Kampen12-Aug-08 9:22
Bram van Kampen12-Aug-08 9:22 
GeneralRe: Freeze entire screen Pin
baerten12-Aug-08 21:08
baerten12-Aug-08 21:08 
GeneralRe: Freeze entire screen Pin
Bram van Kampen15-Aug-08 14:21
Bram van Kampen15-Aug-08 14:21 
QuestionFile Reading Issue Pin
VC_RYK11-Aug-08 22:10
VC_RYK11-Aug-08 22:10 
AnswerRe: File Reading Issue Pin
Cedric Moonen11-Aug-08 22:20
Cedric Moonen11-Aug-08 22:20 
AnswerRe: File Reading Issue Pin
shaibee11-Aug-08 22:33
shaibee11-Aug-08 22:33 
If you are using the same file object to read the file again, you need to seek the file pointer to beginning of file(BOF), before you read. This is so because you have read to End of File, and when you read again, it tries to read from current position of file pointer. You need to reset the current position to BOF.

I dont know what language are u using but it would be something like

file.Seek(0);

or

filestream.SeekBegin();

or something similar.


Regards,

Its never over !

GeneralRe: File Reading Issue Pin
David Crow12-Aug-08 3:38
David Crow12-Aug-08 3:38 
AnswerRe: File Reading Issue Pin
kbshibukumar11-Aug-08 23:49
kbshibukumar11-Aug-08 23:49 
AnswerRe: File Reading Issue Pin
Bram van Kampen12-Aug-08 9:26
Bram van Kampen12-Aug-08 9:26 
QuestionCDialog Destroy memory leaks! please help.. Pin
gamja11-Aug-08 21:39
gamja11-Aug-08 21:39 
AnswerRe: CDialog Destroy memory leaks! please help.. Pin
toxcct11-Aug-08 21:47
toxcct11-Aug-08 21:47 
AnswerRe: CDialog Destroy memory leaks! please help.. Pin
sashoalm11-Aug-08 21:47
sashoalm11-Aug-08 21:47 
AnswerRe: CDialog Destroy memory leaks! please help.. Pin
krmed12-Aug-08 2:12
krmed12-Aug-08 2:12 
QuestionRe: CDialog Destroy memory leaks! please help.. Pin
David Crow12-Aug-08 3:30
David Crow12-Aug-08 3:30 
AnswerRe: thx all, but still problem.. Pin
gamja12-Aug-08 4:04
gamja12-Aug-08 4:04 
QuestionCreating a dll using Visual C++ 2005 Pin
Sangeetha_J11-Aug-08 21:22
Sangeetha_J11-Aug-08 21:22 
AnswerRe: Creating a dll using Visual C++ 2005 Pin
toxcct11-Aug-08 21:32
toxcct11-Aug-08 21:32 
GeneralRe: Creating a dll using Visual C++ 2005 Pin
Sangeetha_J11-Aug-08 21:50
Sangeetha_J11-Aug-08 21:50 
GeneralRe: Creating a dll using Visual C++ 2005 Pin
toxcct11-Aug-08 21:52
toxcct11-Aug-08 21:52 
GeneralRe: Creating a dll using Visual C++ 2005 Pin
Sangeetha_J11-Aug-08 22:06
Sangeetha_J11-Aug-08 22:06 
GeneralRe: Creating a dll using Visual C++ 2005 Pin
toxcct11-Aug-08 22:10
toxcct11-Aug-08 22:10 
GeneralRe: Creating a dll using Visual C++ 2005 Pin
Sangeetha_J11-Aug-08 22:19
Sangeetha_J11-Aug-08 22:19 
GeneralRe: Creating a dll using Visual C++ 2005 Pin
toxcct11-Aug-08 22:22
toxcct11-Aug-08 22:22 

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.