Click here to Skip to main content
15,922,419 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: how to chante "this" in inspecter member funcion of a class , Pin
Milton Karimbekallil27-May-06 1:38
Milton Karimbekallil27-May-06 1:38 
GeneralRe: how to chante "this" in inspecter member funcion of a class , Pin
Member 227165527-May-06 2:01
Member 227165527-May-06 2:01 
Questiondisassembly error Pin
Anu_Bala26-May-06 19:18
Anu_Bala26-May-06 19:18 
AnswerRe: disassembly error Pin
Hamid_RT26-May-06 19:32
Hamid_RT26-May-06 19:32 
GeneralRe: disassembly error Pin
Anu_Bala26-May-06 19:34
Anu_Bala26-May-06 19:34 
GeneralRe: disassembly error Pin
Hamid_RT26-May-06 19:41
Hamid_RT26-May-06 19:41 
GeneralRe: disassembly error Pin
Anu_Bala26-May-06 19:45
Anu_Bala26-May-06 19:45 
GeneralRe: disassembly error Pin
Bram van Kampen28-May-06 13:50
Bram van Kampen28-May-06 13:50 
This can be a nasty one! Errors of this kind commonly occur as a result of unintentionally clobbering some memory somewhere, usually through writing to a rogue pointer.
Standard Debugging techniques should be able to find it though. I would proceed as follows:-

Examine the code you wrote since the version of your code in which the error did not occur

Set breakpoints, but be prepared, it usually bombs in a place other than where the error is actually located.

Disable Sections of code(by commenting out Function Calls) until the problem disappears. Narrow your search area down.

Print Status information to a Text File during Run Time(when in doubt, Print more Out).

This can be hard and Tedious, and it would be best if one could avoid getting into this situation in the first place. On the preventative side, Recompile frequently, and use Rebuild All after each major feature change. Test comprehensively at each stage, not just the feature you've added, but also the features that where working perfectly, and should not be affected by the New Code. This way you hopefully catch these problems early, at a time where you have a full mental picture of the code of the new feature, and a limited area of code to investigate.

Success in the Hours ahead

LateNightsInNewry
QuestionRe: disassembly error Pin
Nibu babu thomas26-May-06 19:53
Nibu babu thomas26-May-06 19:53 
AnswerRe: disassembly error Pin
Stephen Hewitt26-May-06 22:22
Stephen Hewitt26-May-06 22:22 
GeneralRe: disassembly error Pin
Anu_Bala28-May-06 19:06
Anu_Bala28-May-06 19:06 
GeneralRe: disassembly error [modified] Pin
Stephen Hewitt28-May-06 19:18
Stephen Hewitt28-May-06 19:18 
QuestionMultiThread question? Pin
G_S26-May-06 14:55
G_S26-May-06 14:55 
AnswerRe: MultiThread question? Pin
Michael Dunn26-May-06 15:01
sitebuilderMichael Dunn26-May-06 15:01 
GeneralRe: MultiThread question? Pin
G_S26-May-06 15:09
G_S26-May-06 15:09 
QuestionInstall a driver ? Pin
Christian Graus26-May-06 12:38
protectorChristian Graus26-May-06 12:38 
AnswerRe: Install a driver ? Pin
Michael Dunn26-May-06 13:47
sitebuilderMichael Dunn26-May-06 13:47 
GeneralRe: Install a driver ? Pin
Christian Graus26-May-06 15:53
protectorChristian Graus26-May-06 15:53 
GeneralRe: Install a driver ? Pin
Gary R. Wheeler27-May-06 4:36
Gary R. Wheeler27-May-06 4:36 
GeneralRe: Install a driver ? Pin
Michael Dunn27-May-06 5:51
sitebuilderMichael Dunn27-May-06 5:51 
GeneralRe: Install a driver ? Pin
Gary R. Wheeler27-May-06 13:59
Gary R. Wheeler27-May-06 13:59 
GeneralRe: Install a driver ? [modified] Pin
Alexander M.,28-May-06 2:12
Alexander M.,28-May-06 2:12 
AnswerRe: Install a driver ? Pin
_anil_28-May-06 15:30
_anil_28-May-06 15:30 
QuestionHow do I see my C++ app? Pin
Angalo26-May-06 10:27
Angalo26-May-06 10:27 
AnswerRe: How do I see my C++ app? Pin
Michael Dunn26-May-06 10:50
sitebuilderMichael Dunn26-May-06 10:50 

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.