bstrong
bstrong

Reputation: 660

How to Tell VS 2012 to Finish Debugging Session and Skip Remaining Breakpoints

I'm debugging a program using Visual Studio 2012. It goes through the same functions multiple times using different parameters. As I learn more information from the debugging session sometimes I want to start over, but with the architecture we are using it would be easier to just finish running the piece of code it is going through than to stop the session and start again. But because it goes through the same functions repeatedly it keeps stopping at my breakpoints.

Is there a way to tell Visual Studio to finish running and ignore all remaining breakpoints without removing them for the next time I go through the code, and without stopping the debug session? I've tried to search for information on this but I didn't see anything.

Thank you for your help.

Upvotes: 0

Views: 44

Answers (1)

Z .
Z .

Reputation: 12837

In the breakpoints window (debug/windows/breakpoints) there is a button to enable/disable all breakpoints.

Upvotes: 1

Related Questions