Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations TouchToneTommy on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Suspending Exception Handling

Status
Not open for further replies.

Fynn

Programmer
Apr 2, 2002
5
CA
Is there a way to turn off exception handling so that you can stop the code execution right where the error took place. As all good developers do ;) I have taken error handling into account from the begining of the dev process but when debugging the exception handling is getting in the way. I hope there is a simple answer to this, something I missed.

Thanks
 
Fynn,

In order to turn of the exception handling and break directly into the debugger you need to go under 'Debug/Exceptions'. In there you can set it so that you into break into the debugger while running your code. Set it for as many of that levels as you feel necessary instead of allowing it to continue on.
Hope this Help,
Bueller
 
Fynn,

Is the problem that you are running it in release mode. if so then right- click on the solution and go to the configuration manager. then change the project from running in release mode to be running in debug mode.

Hope this helps
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top