Click here to Skip to main content
16,005,169 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: Array Help Please (user defined size) Pin
planetx224-Apr-07 10:21
planetx224-Apr-07 10:21 
GeneralRe: Array Help Please (user defined size) Pin
David Crow4-Apr-07 10:31
David Crow4-Apr-07 10:31 
GeneralRe: Array Help Please (user defined size) Pin
planetx224-Apr-07 10:34
planetx224-Apr-07 10:34 
QuestionRe: Array Help Please (user defined size) Pin
David Crow4-Apr-07 10:41
David Crow4-Apr-07 10:41 
AnswerRe: Array Help Please (user defined size) Pin
planetx224-Apr-07 11:08
planetx224-Apr-07 11:08 
GeneralRe: Array Help Please (user defined size) Pin
David Crow5-Apr-07 2:42
David Crow5-Apr-07 2:42 
Questionerror in comilation:Unhandled exception at 0x004129c8 Pin
lavy28834-Apr-07 6:05
lavy28834-Apr-07 6:05 
AnswerRe: error in comilation:Unhandled exception at 0x004129c8 Pin
James R. Twine4-Apr-07 6:41
James R. Twine4-Apr-07 6:41 
   An AV error is usually the result of trying to access memory that is not valid. Given the address shown, I would guess that you had an invalid pointer (or reference if using DLLs w/VC6), or a pointer that was once valid but is no longer (like by double-freeing or trying to use an allocated resource that was previously released).

   To debug it, crash it under the debugger to see what variable is being used that caused the crash, and then track its use to determine where it has gone bad.  Some situations like buffer over-runs or under-runs can also cause problems like this, because you "step on" the value of a pointer/reference causing a crash when you try to use it.

   Peace!

-=- James
Please rate this message - let me know if I helped or not!<HR>If you think it costs a lot to do it right, just wait until you find out how much it costs to do it wrong!
Avoid driving a vehicle taller than you and remember that Professional Driver on Closed Course does not mean your Dumb Ass on a Public Road!
See DeleteFXPFiles

GeneralRe: error in comilation:Unhandled exception at 0x004129c8 Pin
lavy28834-Apr-07 6:56
lavy28834-Apr-07 6:56 
Questioninclude Pin
Anka_Ame4-Apr-07 5:19
Anka_Ame4-Apr-07 5:19 
AnswerRe: include Pin
David Crow4-Apr-07 5:25
David Crow4-Apr-07 5:25 
GeneralRe: include Pin
Anka_Ame4-Apr-07 5:27
Anka_Ame4-Apr-07 5:27 
QuestionRe: include Pin
David Crow4-Apr-07 5:34
David Crow4-Apr-07 5:34 
AnswerRe: include Pin
Eytukan4-Apr-07 6:10
Eytukan4-Apr-07 6:10 
GeneralRe: include Pin
Roger Stoltz4-Apr-07 5:31
Roger Stoltz4-Apr-07 5:31 
AnswerRe: include Pin
Eytukan4-Apr-07 6:08
Eytukan4-Apr-07 6:08 
GeneralRe: include Pin
Mark Salsbery4-Apr-07 8:03
Mark Salsbery4-Apr-07 8:03 
GeneralRe: include Pin
Eytukan4-Apr-07 16:40
Eytukan4-Apr-07 16:40 
AnswerRe: include Pin
Anka_Ame4-Apr-07 6:13
Anka_Ame4-Apr-07 6:13 
GeneralRe: include Pin
Nemanja Trifunovic4-Apr-07 6:39
Nemanja Trifunovic4-Apr-07 6:39 
QuestionCRichEditCtrl bug with SetSelectionCharFormat Pin
orion45004-Apr-07 5:10
orion45004-Apr-07 5:10 
AnswerRe: CRichEditCtrl bug with SetSelectionCharFormat Pin
Roger Stoltz4-Apr-07 5:54
Roger Stoltz4-Apr-07 5:54 
Questionfopen() in c++ Pin
lavy28834-Apr-07 4:53
lavy28834-Apr-07 4:53 
AnswerRe: fopen() in c++ Pin
led mike4-Apr-07 5:01
led mike4-Apr-07 5:01 
GeneralRe: fopen() in c++ Pin
lavy28834-Apr-07 5:05
lavy28834-Apr-07 5:05 

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.