DEBUG:0xC0000005: Access Violation
-
When I debug my C# program in vs2005, I always met the problem of first-chance exception:0xC0000005: Access Violation. The problem occured when vs loaded the dlls. If I run the exe outside the IDE, it's OK. I doubt that an anti-virus software I installed yesterday caused the problem. Before the antivirus installed, everything was OK. Please help.
-
When I debug my C# program in vs2005, I always met the problem of first-chance exception:0xC0000005: Access Violation. The problem occured when vs loaded the dlls. If I run the exe outside the IDE, it's OK. I doubt that an anti-virus software I installed yesterday caused the problem. Before the antivirus installed, everything was OK. Please help.
Check this out http://www.updatexp.com/0xC0000005.html[^]
Vasudevan Deepak Kumar Personal Homepage Tech Gossips
-
When I debug my C# program in vs2005, I always met the problem of first-chance exception:0xC0000005: Access Violation. The problem occured when vs loaded the dlls. If I run the exe outside the IDE, it's OK. I doubt that an anti-virus software I installed yesterday caused the problem. Before the antivirus installed, everything was OK. Please help.
first-chance exceptions are exceptions that have been caught and dealt with. No need to worry about it :) BTW: that exception code is the same as NullReferenceException :)
xacc.ide
The rule of three: "The first time you notice something that might repeat, don't generalize it. The second time the situation occurs, develop in a similar fashion -- possibly even copy/paste -- but don't generalize yet. On the third time, look to generalize the approach." -
first-chance exceptions are exceptions that have been caught and dealt with. No need to worry about it :) BTW: that exception code is the same as NullReferenceException :)
xacc.ide
The rule of three: "The first time you notice something that might repeat, don't generalize it. The second time the situation occurs, develop in a similar fashion -- possibly even copy/paste -- but don't generalize yet. On the third time, look to generalize the approach." -
Thanks. I would not worry about it at all if the IDE ignored the problem and let me debug my program.
Your settings just might be wrong, I have fallen in a similar trap if I havent reset the settings for exceptions. Go to Debug, Exception, click 'Reset All'. Also make sure you dont have native debugging turned on, if you dont need it. Try it now :)
xacc.ide
The rule of three: "The first time you notice something that might repeat, don't generalize it. The second time the situation occurs, develop in a similar fashion -- possibly even copy/paste -- but don't generalize yet. On the third time, look to generalize the approach." -
Check this out http://www.updatexp.com/0xC0000005.html[^]
Vasudevan Deepak Kumar Personal Homepage Tech Gossips
-
Your settings just might be wrong, I have fallen in a similar trap if I havent reset the settings for exceptions. Go to Debug, Exception, click 'Reset All'. Also make sure you dont have native debugging turned on, if you dont need it. Try it now :)
xacc.ide
The rule of three: "The first time you notice something that might repeat, don't generalize it. The second time the situation occurs, develop in a similar fashion -- possibly even copy/paste -- but don't generalize yet. On the third time, look to generalize the approach."