views:

66

answers:

3

As title, is there a quick way to run through the code once without stopping on breakpoints?

+2  A: 

In the debug menu, there's a "Disable all breakpoints" option that'll do what you want.

David Hedlund
+4  A: 

"Disable All Breakpoints" from the Debug menu - you can assign a keyboard shortcut:

Tools->Options menu then Environment->Keyboard

That and of course CTRL+F5 which is the default short cut for "Start Without Debugging" but I'm sure you noticed this one.

Gregory Pakosz
+2  A: 

"Start without debugging" from the Debug menu will definitely skip all breakpoints :)

jesperll
Not that silly actually, you can attach the debugger later.
MSalters