vote up 2 vote down star
1

I have an issue with Visual Studio 2005 w/ TFS where, from time to time, the Solution Explorer will stop responding to interaction. Instead it does the beep, like I'm trying to click on a parent window with a modal dialog visible, but there isn't one. The only thing I've found to do so far, is to restart VS, but that's kind of a pain because our solution is rather large. And it's not even a guarantee... it might happen again when I load the solution.

I was curious if anyone else has had this problem and knows of a better solution that restarting VS until it goes away.

flag

67% accept rate

12 Answers

vote up 1 vote down

Yes this was a common problem in Visual Studio 2005, a background thread would like Visual Studio and no let anything happen. Then a little icon would should up in the status bar that basically said "Visual Studio is Working Be patient." This happened to me whenever I started the document explorer for the first time.

link|flag
vote up 1 vote down

I have had problems like this with different parts of VS 2005, but they had more to do with network drives that were no longer accessible and IntelliSense refreshing.

I made sure to unmount any unused network drives and disable IntelliSense since I'm using Visual Assist anyway using this method:

http://www.wholetomato.com/forum/topic.asp?TOPIC_ID=5550

link|flag
vote up 0 vote down

Try unbinding your solution from source control. You can use the command line TFS tool ("tf") to do the same actions and it should prevent VS from freezing up due to high latency connections / drops, to TFS.

link|flag
vote up 0 vote down

Also, a very large document store will slow down the Team Explorer significantly.. sigh

link|flag
vote up 3 vote down

In Visual Studio 2005, the modal dialogs that pop up remember their position relative to 0,0 on the Windows virtual desktop. If you change your multimon configuration, for example removing a monitor, and the popup dialog restores itself to a position that no longer is a visible part of the virtual desktop, you can have a modal dialog existing off screen. If you enter this situation again, try hitting alt-spacebar to pull down the System menu of the window, and then press M for move. Then press one of the arrow keys and the dialog's position will then bind itself to the mouse. You can then bring the modal dialog back on screen.

This bug was fixed in VS 2008 SP1.

link|flag
I have VS 2008 SP1 and this bug still exists. – Bug Jul 7 at 14:02
vote up 0 vote down

I have this exact problem with VS 2008 only AFTER installing SP1. Ugh. And it happens not infrequently and there seems to be no direct cause.

Has anyone experience this on VS 2008 sp 1 and have any suggestions?

link|flag
vote up 0 vote down

I just had this happen for the first time today, and I have VS2008 with SP1. Quite frustrating...

link|flag
vote up 0 vote down

BTW, I tried ALT-SPACE then 'M' to move the hidden dialog, but it just makes the same "Default Beep" sound as soon as I click ALT-SPACE. It seems that there is no "System Menu" for the dialog box that VS thinks is being displayed. I've tried restarting VS, and even rebooting the PC, but I still can't get VS 2008 SP1 to let me click anything. I do have dual monitors, but I have moved the relative position of my secondary monitor (in the display properties window of control panel) trying to find the dialog box.

I have no idea how to regain access to my VS Solution ... :(

link|flag
vote up 0 vote down

My Visual Studio 2008 would lock up every time I was entering the Designer mode editing an aspx file.

My solution was to reinstall .net 3.5 with sp1 and it seemed to solve the problem.

link|flag
vote up 1 vote down

If VS Editor lockdown is accompanied by creation of Setup.exe process that never finishes (visible in the task manager), then this is an issue with Microsoft Office 2007 components.

The solution that has worked for me - reinstalling Microsoft Office 2007. More details.

link|flag
vote up 0 vote down

I had this same problem with Visual Studio 2008 (and specifically after installing MVC framework). My resolution was to install the .Net 3.5 SP1 Family update, reinstall Visual Studio through add/remove, and reinstall MVC framework... hopefully that helps someone - because the issue was really ANNOYING.

link|flag
vote up 0 vote down

If solutions start behaving badly one of the first things I would try is if deleting the .suo file helps. This file contains information about the current designer and Window state (and more).

Deleting this allows reopening the solution just like when it was just checked out from source control, without designer crashes etc.

If you have some add-in problems, running 'devenv.exe /resetskippkgs' might help. (This re-enables add-ins that have been disabled after previous errors)

link|flag

Your Answer

Get an OpenID
or

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