PeterP
PeterP

Reputation: 771

Checking for solution on application crash

How can i disable the "checking for solution" when a error occurs in my program?

What i want is that it directly goes to the error inside Visual Studio 2010. Now i have to wait like 1 minute before i can select debug and see my error.

Did not have this behavior before and not really sure what changed in the environmental settings.

I was debugging with 2 breakpoints when this behavior occurs every time a error happens outside the breakpoints.

Upvotes: 1

Views: 138

Answers (3)

st_stefanov
st_stefanov

Reputation: 1186

What if you put a tick on the check box: Debug -> Exception -> Common Language Runtime Exceptions?

Does it stop immediately?

Upvotes: 0

user1379814
user1379814

Reputation:

If Visual Studio stops reponding it shows "Checking for solution".

At this stage VS is trying to fix the problem and promts to "send report" if user allows that.

It makes not so much sense to disable this, nor it is allowed in Visual Studio.

Upvotes: 1

aleroot
aleroot

Reputation: 72686

This is a settings of the OS rather than of Visual Studio, to disable checking for solution feature on Windows 7 :

Click on start, type: Choose how to report problems, then change it to Never check for solutions .

Upvotes: 2

Related Questions