vote up 2 vote down star

UPDATE1: I have reinstalled Visual Studio and I am still having this problem. My guess is there is a problem with my environment.

Update2: Diving in. I attached windbg to devenv and set a breakpoint in windbg for msenv!_tailMerge_WINMM_dll and traced through.

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".

now, why would vs be denied access to winmm.dll?

---Begin Original---

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. Ctrl + Space in the empty main and Visual Studio crashes.

I googled for help on this but to no avail. I have tried deleting the ncb file but no luck on that front either.

I am currently working with Intellisense turned off as shown in this article: http://stackoverflow.com/questions/69729/visual-studio-2005-updating-intellisense-hang-up

And I have no crashes, but it sure would be nice to have intellisense back

Call stack from a crash dump.

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
flag
Did this just start happening? Did you install something like a SP recently? Have you disabled add-ins? Have you tried to reinstall VS? – JP Jun 23 at 21:53
All this time on stackoverflow, and I never knew about <kbd> in markdown - nice ;-p – Marc Gravell Jun 23 at 21:55
@JP IT did a fresh install of my laptop, including VS2k5 SP1,and I have been having problems since then. I disabled all of my add-ins. I will try a repair install today. @Marc Cool huh, I am pretty sure I saw that on Jeff Atwood's blog. codinghorror.com/blog – Justin Jun 24 at 14:14

5 Answers

vote up 2 vote down
  • Did you try repairing the Visual C++ installation?
  • Do you have any plugins installed? Try disabling them.

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).

If you're doing C++ development for a living (or at least doing serious development), there's no reason not to use Visual Assist.

link|flag
I have tried everything except the repair, that will be next on my list. I do both c++ and C# and dropped my money on CodeRush and Refactor! – Justin Jun 23 at 21:57
vote up 2 vote down check

What a bizarre problem.

I finally figured it out using procmon from sysinternals:

http://technet.microsoft.com/en-us/sysinternals/bb896645.aspx

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.

I suppose through debugging foray winmm.dll symbols were downloaded to a FOLDER 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!!!

I deleted the folder, and some other .dll folders :) and all is well.

Thanks for your help.

link|flag
vote up 1 vote down

I would try the following set of steps to try and fix the problem

  • Reset All Settings: Tools -> Import / Export Settings -> Reset All Settings
  • Delete HKCU:\Software\Micosoft\VisualStudio\9.0 and then restart VS
  • Repair the VS installation through Add Remove Programs
  • Disable all 3rd party plugins
link|flag
I will try this, I have to wait for IT to do the Repair – Justin Jun 23 at 22:16
vote up 0 vote down

Make sure you are up on your service packs, I think VS 2005 is at SP1.

link|flag
I am up to date, I edited the post to reflect this – Justin Jun 23 at 22:15
vote up 0 vote down

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).

link|flag
I have tried this. I am also having this problem with new solutions as well. – Justin Jun 23 at 22:16
Well, it was merely a blind guess, sometimes actions like these solve problems. – divo Jun 23 at 22:39
And yet another guess: Did you try to start Visual Studio in safe mode (stackoverflow.com/questions/885636/…)? – divo Jun 23 at 22:41

Your Answer

Get an OpenID
or

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