Visual Studio 2005 - 'Updating IntelliSense' hang-up - Stack Overflow most recent 30 from stackoverflow.com 2009-12-03T11:40:14Z http://stackoverflow.com/feeds/question/69729 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/69729/visual-studio-2005-updating-intellisense-hang-up 4 Visual Studio 2005 - 'Updating IntelliSense' hang-up Bjoern 2008-09-16T06:11:14Z 2009-03-22T18:39:15Z <p>Hi Folks.</p> <p>I am having trouble with my Visual Studio 2005 IntelliSense for some time now.<br><br> It used to work fine, but for some reason the 'Updating IntelliSense...' does no longer seem to be able to complete for the solution I'm working on currenly- it simply gets stuck somewhere at about 3-bars of progress and blocks one of my precious CPUs for eternity.<br><br> Deleting the .ncb file of my solution and performing a full 'Clean' afterwards was no help. The 'Update' simply gets stuck again.<br><br> The project I'm working on is a fairly large C++ solution with 50+ projects, quite a few template classes (even more lately) and in general quite complex. I have no idea which impact this might have on the IntelliSense.<br><br> Visual Studio 2005 Service Pack 1 and all hotfixes which rely on it are <em>not</em> installed (we hade huge problems with this one, so we haven't migrated yet).<br><br> Any answer is very much appreciated on this one. Gives me the creeps.. <br><br> Cheers,<br> \Bjoern</p> http://stackoverflow.com/questions/69729/visual-studio-2005-updating-intellisense-hang-up/69840#69840 6 Answer by redwyre for Visual Studio 2005 - 'Updating IntelliSense' hang-up redwyre 2008-09-16T06:36:40Z 2008-09-16T06:36:40Z <p>Rename "C:\Program Files\Microsoft Visual Studio 8\VC\vcpackages\feacp.dll" to something else (like "feacp.bak") to disable Intellisense.</p> <p>I recommend getting <a href="http://www.wholetomato.com/" rel="nofollow">Visual Assist X</a> to make up for it (it also has a number of other useful features as well).</p> http://stackoverflow.com/questions/69729/visual-studio-2005-updating-intellisense-hang-up/72071#72071 0 Answer by Mark for Visual Studio 2005 - 'Updating IntelliSense' hang-up Mark 2008-09-16T13:17:52Z 2008-09-16T13:17:52Z <p>Intellsense is problematic. Very problematic. When it works, it's great, but more often than not it will cause more problems than it's worth. It will hang up, it will parse through files while you are trying to compile code and will generally make VC 2005 sometimes run like a dog. As a previous poster suggested, disable intellisense (and chose a potential alternative -- I also support VAX).</p> <p>Supposedly the hotfix and SP1 provided by MS will fix <em>some</em> intellisense problems, but not all. We have seen minimal help from these where I work. You are better off to disable it and rely on something else.</p> <p>My feeling is that the slowness comes from the size of the projects. Yours seems like it might fall into that case.</p> http://stackoverflow.com/questions/69729/visual-studio-2005-updating-intellisense-hang-up/72089#72089 0 Answer by Steve Gury for Visual Studio 2005 - 'Updating IntelliSense' hang-up Steve Gury 2008-09-16T13:20:54Z 2008-09-16T13:20:54Z <p><a href="http://stackoverflow.com/questions/39474/how-to-get-intellisense-to-reliably-work-in-visual-studio-2008">Here</a> is the only solution that works for me.</p> http://stackoverflow.com/questions/69729/visual-studio-2005-updating-intellisense-hang-up/74357#74357 3 Answer by Andy Stevenson for Visual Studio 2005 - 'Updating IntelliSense' hang-up Andy Stevenson 2008-09-16T16:41:49Z 2008-09-16T16:41:49Z <p>I have found that the best fix for Intellisense in VS2005 is to install SP1, and then this hotfix: <a href="http://support.microsoft.com/kb/947315" rel="nofollow">947315</a>. It has the added benefit of fixing most of the multi-core build issues.</p> <p>This hotfix also includes the ability to control Intellisense via Macros. More information <a href="http://blogs.msdn.com/vcblog/archive/2007/11/19/controlling-intellisense-through-macros.aspx" rel="nofollow">here</a>.</p> <p>As for making SP1 more friendly for existing code, you might also check out this hotfix for template compilation: <a href="http://support.microsoft.com/kb/930198" rel="nofollow">http://support.microsoft.com/kb/930198</a> </p>