Disable debugging page popping up in Visual Studio 2010

276 Views Asked by At

This might have very obvious solution but I'm afraid I cannot find out how to disable this specific page which pops up each single time I use the break command whilst debugging. Every time I have to close it because I don't need it; moreover, it pops up any next time I use the break command on the toolbar.

I'm using Visual Basic Express Edition 2010

How can this be disabled?

enter image description here

Thanks.

1

There are 1 best solutions below

4
On BEST ANSWER

Just don't use Debug + Break All. It is typically useless anyway because it is pretty unlikely that you'll break your own code. Which is what the window is telling you. Set a breakpoint on a line of your own code, the code you want to debug or verify. Clicking in the left margin will set one.