views:

19

answers:

2

How can I search for breakpoints in VS2005 or go to next breakpoint?

I need this feature when I add a bunch of breakpoints to unfamiliar code, say on all bits of dodgy code connected with some some feature and I want to make sure I have broken on all of them. Kind of limited code coverage test.

+3  A: 

Click

Debug->Windows->Breakpoints.

This gives you a list of all break points, and you can select the columns to be displayed.

astander
+1  A: 

Ctrl-Alt-B displays the Breakpoints dialog box.

cxfx