views:

178

answers:

3

Hi,

When I am at a break-point and if I want to ignore all the rest of break-points and move on, what shortcut should I use?

thanks

+1  A: 

Well, you can delete all breakpoints using Ctrl+Shift+F9 and you can disable all breakpoints from the ->Debug menu. Disabling breakpoints does not have a shortcut defined, but you define your own in ->Tools->Options menu under Environment->Keyboard. Also Shift+F5 stops debugging altogether.

klausbyskov
+2  A: 

CTRL-SHIFT-F9 will delete them all.

To disable all breakpoint - either you do it from the menu - or you go to option -> environment -> keyboard

and create a shortcut there

Dani
+2  A: 

You can select "Disable All Breakpoints" from the Debug menu.

This and then continue with F5.

You could set this up as a keyboard shortcut under Tools/Options/Keyboard

Matt Joslin
thanks! It was useful and quick to implement.You can also assign a shortcut for "Enable All Breakpoints"I have used CTRL + 7 for disabling and CTRL + 8 for enabling. Most of the shortcuts are reserved already.
burak ozdogan