Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

does anyone know how to get intellisense to work reliably when working in C/C++ projects? It seems to work for about 1 in 10 files. Visual Studio 2005 seems to be a lot better than 2008.

Edit: Whilst not necessarily a solution, the work-around provided here:

http://stackoverflow.com/questions/39474/how-to-get-intellisense-to-reliably-work-in-visual-studio-2008#39590

Is probably the best bet if I want a decent intellisense system.

share|improve this question

10 Answers

up vote 23 down vote accepted

I've also realized than Intellisense is sometime 'lost', on some big project. Why? No idea.

This is why we have bought Visual Assist (from Tomato software) and disabled Intellisense by deleting the dll feacp.dll in the Visual studio subdirectory (C:\Program Files\Microsoft Visual Studio 8\VC\vcpackages)

This is not a solution, just a workaround.

share|improve this answer
+1 for how to disable the intellisense. The macro's I used for disabling in 2005 didn't work anymore in 2008. – Stormenet Nov 8 '10 at 9:30
2  
I read elsewhere that just deleting that dll should be handled carefully, creating a folder named "Solutionname.ncb" should be preferred. Results in annyoing error messages at every startup though. And +1 for mentioning VAX. – SvenS Mar 2 '12 at 11:27
This is still good advice as of VS2010 since intellisense in VS2010 is very slow (although now it's possible to disable intellisense using the config page in VS) – Benj Mar 26 '12 at 13:03

Native C++ intellisense does not work reliably in any version of Visual Studio. I find there are two common problems:

1) Header file paths are not set-up correctly. When you find a type where intellisense is not working, use the IDE to click through each header file to find the one containing the type. (Right click on #include and select Open Document...). If this fails before you get to the file which declares the type then this is your problem. Make sure header file search paths are set-up correctly.

And,

2) The intellisense database is corrupt. This happens ALL The time. You need to close the solution, delete the .ncb file, and then reopen the solution. I posted the macro I use for this in answer to another question here.


The preprocessor can also confuse intellisense - so make sure any #defines during build are also available to intellisense. Other than that, I don't know what else can break it. I've not seen any particular issues with forward declarations.

share|improve this answer
3  
Thats a helpful solution to delete the ncb file. :) – sn3ek Oct 6 '09 at 18:57
1  
Note: Intellisense was fixed in VS2010. – Billy ONeal Dec 5 '10 at 17:19

It looks like there's hope on the horizon for those of us unable to obtain Visual Assist:

Rebuilding Intellisense

share|improve this answer
2  
But no support for C++/CLI in the first release of VS2010 :/ – demoncodemonkey Jul 1 '09 at 9:49

Do you have any add-ins installed (or uninstalled)? I find that effects my intellisense.

Besides that just making sure your Tools->Options->Text Editor->All Languages "Auto List Members" and "Parameter Information" are checked off.

share|improve this answer
Thanks, this helped me figure out why Intellisense mysteriously stopped working! – Peter Bernier Jan 10 '10 at 16:45
My "All Languages" settings showed green squares instead of checkmarks (presumably because they were set for only some of the languages). Clicking on them so they were checked fixed the problem for me. – Tom Bushell Apr 19 '12 at 20:10

I don't use VS2008 for C++, only VB & C#, but I find that when intellisense stops working (true for VS2003/2005/2008) it's because something in the project/file is broken - usually a bad reference or code.

VB and C# have much better intellisense support due to the ability to reflect on the referenced assemblies to build the intellisense tree.

C++ has to walk the include files for function prototypes, and if the paths are not correct it will not find all the prototype headers.

share|improve this answer

My fix to itellisense was required after that awful refactor utility minced my code. The problem was a class header file that included an #include of itself. The recursive reference destroys itellisense. A symptom of this is if itellisense can see other classes but not the current one. Also:

Use #pragma once to eliminate duplicate header loads

If the project now takes a very much longer time to load, that itellisense trying to make sense of the conflict that is causing then lack of completion support.

Often it is only one class object that is affected, This shows you what files (usually headers) to look at.

share|improve this answer

@John Richardson / @Jonathan Holland

My includes are setup correctly, no problems there. I've also tried the NCB rebuild several times but it never fixes it 100%.

I have a feeling it may be to do with forward declarations of classes. e.g. to reduce the complexity of includes in header files we normally do something like:

class MyPredeclared;

class SomeOtherClass
{
private:
    MyPredeclared* m_pPointer;
}

I wonder if that screws it up? Any other ideas? It definitely gets worse the larger your project gets.

share|improve this answer

I had a very annoying problem, intellisense was working only in some files, without any evident reason... it took me a couple of hours of digging through google, but I finally understood that the reason was indeed recursive reference! I was using the:

#ifndef CLASS_H
#define CLASS_H
...
#endif

to avoid redefinition of symbols, and this sometimes breaks intellisense in big projects.

But it is enough to comment the ifndef-define-endif and put a:

#pragma once 

at the beginning of the header files to still avoid redefinitions and have Intellisense working again =)=)

At least, this worked for me, hope it's useful...

Cheers Francesco

share|improve this answer

About this problem i've notice something interesting (on Visual Studio 2010): to solve this problem i've changed #include sintax in my header files, before was (old project done with VS 2005 and reopened using VS 2010):

#include <myfile.h> 

and i fix this with:

#include "myfile.h"

After intellisense start working correctly! I hope this can help!

share|improve this answer

I had to reset the settings...

C:\Program Files\Microsoft Visual Studio 9.0\Common7\IDE>devenv.exe /ResetSettings

thread on this here

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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