Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

can't remove breakpoint

I've a solid break point in Visual Studio 2008 that I can't remove. I can add other break points. Some removed but some don't.

The error is "can't insert breakpoint"

How can this be fixed?


This is very weird. I added a new line above the lines that I couldn't removed and was able to remove them.

Anyone who adds more information on this will get credit.

like image 453
Curtis White Avatar asked Feb 22 '11 23:02

Curtis White


People also ask

How do you remove a breakpoint?

In the Query Editor window, right-click the breakpoint, and then click Delete Breakpoint. In the Breakpoints window, right-click the breakpoint, and then click Delete on the shortcut menu. In the Breakpoints window, select the breakpoint, and then press DELETE.

How do I turn off breakpoints in Chrome?

Right-click anywhere in the Breakpoints pane to deactivate all breakpoints, disable all breakpoints, or remove all breakpoints.

How do I delete a breakpoint in Visual Studio?

To clear all breakpoints in the applicationFrom the Debug menu, choose Clear All Breakpoints (CTRL+SHIFT+F9).


1 Answers

This would happen when the breakpoint gets out of sync from the parse tree.

Go to the Breakpoints pane (Debug, Windows, Breakpoints) and delete it from there.

like image 177
SLaks Avatar answered Oct 08 '22 05:10

SLaks