UPDATED! Intellisense auto-complete is causing VC++ in Visual Studio 2005 SP1 to crash - Stack Overflow most recent 30 from stackoverflow.com2009-12-06T21:53:08Zhttp://stackoverflow.com/feeds/question/1035447http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1035447/updated-intellisense-auto-complete-is-causing-vc-in-visual-studio-2005-sp1-to2UPDATED! Intellisense auto-complete is causing VC++ in Visual Studio 2005 SP1 to crashJustin2009-06-23T21:48:57Z2009-06-24T19:28:24Z
<p>UPDATE1: I have reinstalled Visual Studio and I am still having this problem. My guess is there is a problem with my environment.</p>
<p>Update2: Diving in.
I attached windbg to devenv and set a breakpoint in windbg for msenv!_tailMerge_WINMM_dll and traced through. </p>
<p>This is trying to load winmm.dll using the LoadLibrary API. I can see that LoadLibrary is failing and GetLastError is returning 5 which is "access denied".</p>
<p>now, why would vs be denied access to winmm.dll?</p>
<p>---Begin Original---</p>
<p>I am currently having a serious issue with Visual Studio 2005 SP1 Intellisense in C++. I have an all native solution with on project. Whenever I, or the editor, attempt to invoke intellisense auto-complete pow, Visual Studio crashes. I even tried this with a brand new console app. <kbd>Ctrl</kbd> + <kbd>Space</kbd> in the empty main and Visual Studio crashes.</p>
<p>I googled for help on this but to no avail. I have tried deleting the ncb file but no luck on that front either.</p>
<p>I am currently working with Intellisense turned off as shown in this article:
<a href="http://stackoverflow.com/questions/69729/visual-studio-2005-updating-intellisense-hang-up">http://stackoverflow.com/questions/69729/visual-studio-2005-updating-intellisense-hang-up</a></p>
<p>And I have no crashes, but it sure would be nice to have intellisense back</p>
<p>Call stack from a crash dump. </p>
<pre><code>7c812a6b kernel32!RaiseException+0x53
502717a6 msenv!__delayLoadHelper2+0x139
50675186 msenv!_tailMerge_WINMM_dll+0xd
505ac3c3 msenv!CTextViewIntellisenseHost::UpdateCompletionStatus+0x1a7
505acb50 msenv!CEditView::UpdateCompletionStatus+0x30
505dcfad msenv!CEditView::CViewInterfaceWrapper::UpdateCompletionStatus+0x2a
02ae47fc vcpkg!CCompletionList::DoCompletion+0x444
02ade2ce vcpkg!CAutoComplete::PostProcess+0x240
02ade07f vcpkg!CAutoComplete::OnACParseDone+0x3e
02adac2d vcpkg!CMemberListWorkItem::OnCompleted+0x9d
029eb4e3 vcpkg!CWorkItem::ProcessPendingWorkItemCompletedCalls+0x117
029f8b4f vcpkg!CParserManager::OnIdle+0x183
0299961a vcpkg!CVCPackage::OnIdle+0x48
5014b288 msenv!ATL::CComAggObject<CTextBuffer>::QueryInterface+0x43
5a9d2394 VCProject!ATL::CComPtr<IOleInPlaceFrame>::~CComPtr<IOleInPlaceFrame>+0x24
5a9d2880 VCProject!ATL::CComObject<CVCArchy>::Release+0x10
774fd420 ole32!CRetailMalloc_GetSize+0x21
5009422b msenv!CMsoCMHandler::FContinueIdle+0x23
5009422b msenv!CMsoCMHandler::FContinueIdle+0x23
</code></pre>
http://stackoverflow.com/questions/1035447/updated-intellisense-auto-complete-is-causing-vc-in-visual-studio-2005-sp1-to/1035475#10354752Answer by Muhammad Haggag for UPDATED! Intellisense auto-complete is causing VC++ in Visual Studio 2005 SP1 to crashMuhammad Haggag2009-06-23T21:54:35Z2009-06-23T21:54:35Z<ul>
<li>Did you try repairing the Visual C++ installation?</li>
<li>Do you have any plugins installed? Try disabling them.</li>
</ul>
<p>It might be worth it to delete the .ncb file in the project directory, in case it was corrupted (.ncb is the intellisense database file).</p>
<p>If you're doing C++ development for a living (or at least doing serious development), there's no reason not to use Visual Assist.</p>
http://stackoverflow.com/questions/1035447/updated-intellisense-auto-complete-is-causing-vc-in-visual-studio-2005-sp1-to/1035477#10354771Answer by JaredPar for UPDATED! Intellisense auto-complete is causing VC++ in Visual Studio 2005 SP1 to crashJaredPar2009-06-23T21:55:37Z2009-06-23T21:55:37Z<p>I would try the following set of steps to try and fix the problem</p>
<ul>
<li>Reset All Settings: Tools -> Import / Export Settings -> Reset All Settings</li>
<li>Delete HKCU:\Software\Micosoft\VisualStudio\9.0 and then restart VS</li>
<li>Repair the VS installation through Add Remove Programs</li>
<li>Disable all 3rd party plugins</li>
</ul>
http://stackoverflow.com/questions/1035447/updated-intellisense-auto-complete-is-causing-vc-in-visual-studio-2005-sp1-to/1035501#10355010Answer by heavyd for UPDATED! Intellisense auto-complete is causing VC++ in Visual Studio 2005 SP1 to crashheavyd2009-06-23T22:03:24Z2009-06-23T22:03:24Z<p>Make sure you are up on your service packs, I think VS 2005 is at SP1.</p>
http://stackoverflow.com/questions/1035447/updated-intellisense-auto-complete-is-causing-vc-in-visual-studio-2005-sp1-to/1035520#10355200Answer by divo for UPDATED! Intellisense auto-complete is causing VC++ in Visual Studio 2005 SP1 to crashdivo2009-06-23T22:09:40Z2009-06-23T22:09:40Z<p>Try "cleaning" the solution, i.e. delete (rename) all temporary files like *.ncb, *.suo etc that have been created by Visual Studio. One of these files might have got corrupted (Your problem sounds like the IntelliSense database is broken).</p>
http://stackoverflow.com/questions/1035447/updated-intellisense-auto-complete-is-causing-vc-in-visual-studio-2005-sp1-to/1040438#10404382Answer by Justin for UPDATED! Intellisense auto-complete is causing VC++ in Visual Studio 2005 SP1 to crashJustin2009-06-24T19:28:24Z2009-06-24T19:28:24Z<p>What a bizarre problem.</p>
<p>I finally figured it out using procmon from sysinternals:</p>
<p><a href="http://technet.microsoft.com/en-us/sysinternals/bb896645.aspx" rel="nofollow">http://technet.microsoft.com/en-us/sysinternals/bb896645.aspx</a></p>
<p>My sounds were somehow changed to windows default sounds after a recent trip to IT. This caused visual studio to play a clicking sound when intellisense happens. In order to play this sound winmm.dll must be loaded up, which is located c:\windows\system32\winmm.dll. </p>
<p>I suppose through debugging foray winmm.dll symbols were downloaded to a <strong>FOLDER</strong> called C:\Program Files\Microsoft Visual Studio 8\Common7\IDE\winmm.dll. Of course this folder looked mighty tasty to Visual Studio, so when it tried to load the winmm.dll folder as a dll file POW!!!</p>
<p>I deleted the folder, and some other .dll folders :) and all is well.</p>
<p>Thanks for your help.</p>