Click here to Skip to main content
15,888,610 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
AnswerRe: I need help to create a basic program about series. Pin
Hamid_RT16-Aug-06 4:54
Hamid_RT16-Aug-06 4:54 
QuestionCGenericList Pin
jon-8014-Aug-06 22:24
professionaljon-8014-Aug-06 22:24 
QuestionScreen Scraping Pin
Billydo14-Aug-06 21:57
Billydo14-Aug-06 21:57 
AnswerRe: Screen Scraping Pin
Naveen14-Aug-06 22:01
Naveen14-Aug-06 22:01 
AnswerRe: Screen Scraping Pin
Hamid_RT14-Aug-06 22:07
Hamid_RT14-Aug-06 22:07 
QuestionError during MSVC++ 6 Debug Mode Pin
romuzu14-Aug-06 21:09
romuzu14-Aug-06 21:09 
AnswerRe: Error during MSVC++ 6 Debug Mode Pin
Hamid_RT14-Aug-06 21:33
Hamid_RT14-Aug-06 21:33 
AnswerRe: Error during MSVC++ 6 Debug Mode Pin
Mike Dimmick15-Aug-06 1:32
Mike Dimmick15-Aug-06 1:32 
The best approach is always to use the debugger. Run your program under the debugger (Build, Start Debug, Go). Do whatever you did to make the error occur. You'll get a dialog box reporting a 'First chance exception in MSVCRT.DLL (code 0xc0000005)'. Note the position of the instruction pointer. Look at the call stack window to see which part of your program called into the C runtime.

You probably passed a NULL or invalid pointer into the C runtime somewhere. Most commonly this is due to an uninitialised variable: the debug version of the C runtime will initialise the stack to 0xCCCCCCCC, while the release version does not do this. The reason for doing this in debug mode is specifically to catch uses of bad pointers.

Stability. What an interesting concept. -- Chris Maunder

QuestionHelp~!! how to set a dialog to be modal dialog??? Pin
mimimimilaw14-Aug-06 21:01
mimimimilaw14-Aug-06 21:01 
AnswerRe: Help~!! how to set a dialog to be modal dialog??? Pin
Naveen14-Aug-06 21:03
Naveen14-Aug-06 21:03 
GeneralRe: Help~!! how to set a dialog to be modal dialog??? Pin
mimimimilaw14-Aug-06 21:26
mimimimilaw14-Aug-06 21:26 
GeneralRe: Help~!! how to set a dialog to be modal dialog??? Pin
Naveen14-Aug-06 21:52
Naveen14-Aug-06 21:52 
AnswerRe: Help~!! how to set a dialog to be modal dialog??? Pin
Hamid_RT14-Aug-06 21:34
Hamid_RT14-Aug-06 21:34 
GeneralRe: Help~!! how to set a dialog to be modal dialog??? Pin
mimimimilaw14-Aug-06 21:50
mimimimilaw14-Aug-06 21:50 
GeneralRe: Help~!! how to set a dialog to be modal dialog??? Pin
Hamid_RT14-Aug-06 22:15
Hamid_RT14-Aug-06 22:15 
QuestionWIN CE 4.2 Emulator [modified] Pin
SFTP14-Aug-06 20:52
SFTP14-Aug-06 20:52 
AnswerRe: WIN CE 4.2 Emulator Pin
Mike Dimmick15-Aug-06 1:39
Mike Dimmick15-Aug-06 1:39 
GeneralRe: WIN CE 4.2 Emulator Pin
SFTP15-Aug-06 17:43
SFTP15-Aug-06 17:43 
GeneralRe: WIN CE 4.2 Emulator Pin
SFTP15-Aug-06 17:44
SFTP15-Aug-06 17:44 
Questionif is someone who can help me? PLEASE!!!!!! Pin
Bravoone_200614-Aug-06 20:33
Bravoone_200614-Aug-06 20:33 
QuestionRe: if is someone who can help me? PLEASE!!!!!! Pin
Bravoone_200614-Aug-06 20:57
Bravoone_200614-Aug-06 20:57 
AnswerRe: if is someone who can help me? PLEASE!!!!!! Pin
Naveen14-Aug-06 21:09
Naveen14-Aug-06 21:09 
QuestionRe: if is someone who can help me? PLEASE!!!!!! Pin
Bravoone_200614-Aug-06 21:27
Bravoone_200614-Aug-06 21:27 
AnswerRe: if is someone who can help me? PLEASE!!!!!! Pin
Naveen14-Aug-06 21:58
Naveen14-Aug-06 21:58 
AnswerRe: if is someone who can help me? PLEASE!!!!!! Pin
Hamid_RT14-Aug-06 21:35
Hamid_RT14-Aug-06 21:35 

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.