user1097228
user1097228

Reputation:

Problems with VS2008 debugger

I am having a Problem to debug my code in VS2008, it just stops the debugging process and sometimes my IDE crashes directly after that, i can't tell exactly when it happends but some configuration is causing this issue, any Ideas?

PS. My code has exception handling and it doesnt happen at a certain line of code but each time somewhere else, whats why i assume its no code issue.

Thanx

Upvotes: 1

Views: 109

Answers (4)

user1083261
user1083261

Reputation:

Try to modify the project settings as explained on MSDN

Upvotes: 1

CloudyMarble
CloudyMarble

Reputation: 37576

If you are debugging a Webservice try this:

appcmd set apppool /apppool.name: string /processModel.pingingEnabled: false

It helped in my case

Upvotes: 0

Kishore Kumar
Kishore Kumar

Reputation: 12884

This case happends when your code undergoes recursive exception handling and may also if you have less ram memory when the IDE debugs, the later is a rare case.

Upvotes: 0

lnu
lnu

Reputation: 1414

Try to enable the break on all exceptions, this way your execution will stop at first error. Go to Debug->Exceptions->check the second line(clr exceptions). If your ide crashes, you can also launch another instance of visual studio and attach it to the other one. Good luck.

Upvotes: 0

Related Questions