user4951
user4951

Reputation: 33140

See all breakpoints in Visual Studio 2010+

Is there a window in Visual Studio 2010 and newer where I can see all the breakpoints that I have in my project or solution?

Upvotes: 248

Views: 93159

Answers (7)

C# Express 2010 does not include the command CTRL + ALT + B; The options Tools> Settings> Expert Settings work only if you need more options, but for view all the break points are not incluyed.

Upvotes: 2

hima
hima

Reputation: 620

Ctrl+Alt+B in Visual Studio 2010.

Upvotes: 21

Bengi Besceli
Bengi Besceli

Reputation: 3748

Breakpoints window is not included in some Express versions of Visual Studio.
Its included in Pro, Premium, and Ultimate. Here is the manual for the versions : http://msdn.microsoft.com/en-us/library/02ckd1z7%28v=VS.100%29.aspx

Upvotes: 8

Tarun Arora
Tarun Arora

Reputation: 4822

Default Shortcuts:

To open the break point window: Ctrl+D, B

If you wanted to delete all breakpoints: Ctrl+F9

Upvotes: 40

Ryder
Ryder

Reputation: 514

To open the Breakpoints Window

On the Debug menu, point to Windows and then choose Breakpoints.

Upvotes: -2

Chandima Janakantha
Chandima Janakantha

Reputation: 35

Tools> Settings> Expert Settings 

Upvotes: 2

Martin Liversage
Martin Liversage

Reputation: 106916

Try Debug -> Windows -> Breakpoints.

Upvotes: 441

Related Questions