vote up 2 vote down star

I have a very serious problem with Visual Studio 2008. Occasionally when I right-click (for go to definition, set next statement etc) when I'm debugging, Visual Studio will just dead-lock and go into not responding mode.

Has anyone had the same problem? Does anyone know how to solve it?

Edit: I'm using SP1 with a couple of hot-fixes.

flag

65% accept rate

8 Answers

vote up 0 vote down

Exit Visual Studio and delete the .ncb file for the project.

link|flag
vote up 2 vote down

When debugging multi-threaded apps, sometimes I get a hang when breakpoint is hit. And sometimes VS would hang (hourglass) when I tried to look at a variable by right-clicking on the variable within the code.

I googled and found a hint that explained, that when VS breaks, it evaluates all the variables in the locals and watch panes, in order to display them. But in threaded apps, this can cause deadlocks if the code takes locks when evaluating values, for example in property getters.

By closing the locals pane before I break, I avoided the hangs.

I'm not explaining this very well. I tried googling again to find the original hint, but did not succeed.

It may have been this: Why does Visual Studio stall while debugging?.

link|flag
vote up 2 vote down

Problem:
Signed Applications/dlls load slowly in Vista. Visual Studio IDE 'Hangs' on offline/non-internet-connected workstations. Without internet connectivity the certificate revocation check times out and causes applications to hang. When debugging/stepping through code dlls are loaded as needed and this is when the revocation check is attempted and the VS IDE becomes unresponsive.

What this effects:
This effects all signed applications/dlls and is also the reason for Microsoft Word/Excel taking so long to open a simple document. Office applications, SQL Management Studio, Visual Studio, Web Applications that use a certificate.

Fix:
Disable checking of Publisher's Certificate Revocation

  1. Go to Internet Options in IE 7
  2. Then go the Security Tab, scroll towards the bottom
  3. Uncheck the 'Check for Publisher's Certificate Revocation' checkbox
  4. Click OK.

Alternate Fix:
Disable the Visual Studio Hosting Process:

  1. Open a project in Visual Studio.
  2. On the Project menu, click Properties.
  3. Click the Debug tab.
  4. Clear the Enable the Visual Studio hosting process check box.

Note: The Alternate Fix causes the loss of some debugging functionality.

Background:
Microsoft Connect Report

link|flag
vote up 1 vote down

Try launching Visual Studio in safe mode to rule out problems with any extension installed.

link|flag
vote up -2 vote down

Ah another big show stopper could be "ActiveDirectory". If this happens at your work and they use "ActiveDirectory" this can happen. Someone here claimed it was a bug with Google Toolbar, but I don't have solid evidence that Google is responsible or not.

link|flag
vote up 1 vote down

I wrote a piece of code the other day, a very crazy template, and the latest VisualStudio would just hang if I placed my mouse over the templated code. It was surreal :)

Anyways you might have an issue like that and you might want to delete your intellisense database and try again.

link|flag
vote up 0 vote down

Mark, have you applied the SP1?

I haven't had your exact issue, but I did have problems with it locking up for 15 seconds in debug mode (or when coming out of debug mode). I found a blog post somewhere that suggested some possible fixes.

One of them was to go into IE 7 and open up Tools->Internet Options->Advanced Tab->Security section and uncheck the 'Check for publisher's certificate revocation' and 'check for server certificate revocation' (or at least the first one). Once I did that, my lock-up woes were over.

Granted, my dev box isn't on the internet, so I didn't care much about most of those settings anyhow in IE. Don't know if that is any help to you, but it certainly fixed my issues with VS 2008.

All the best!

link|flag
vote up 0 vote down

no, but it sounds like a bug. Report it to MS and they'll give you instructions how to get a debug setup going to send them information to debug it.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.