How to get intellisense to reliably work in Visual Studio 2008 - Stack Overflow most recent 30 from stackoverflow.com 2009-11-22T21:15:36Z http://stackoverflow.com/feeds/question/39474 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/39474/how-to-get-intellisense-to-reliably-work-in-visual-studio-2008 10 How to get intellisense to reliably work in Visual Studio 2008 Mark Ingram 2008-09-02T13:13:36Z 2009-05-29T18:50:09Z <p>Hi, 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.</p> <p>Edit: Whilst not necessarily a solution, the work-around provided here: </p> <p><a href="http://beta.stackoverflow.com/questions/39474/how-to-get-intellisense-to-reliably-work-in-visual-studio-2008#39590" rel="nofollow">http://beta.stackoverflow.com/questions/39474/how-to-get-intellisense-to-reliably-work-in-visual-studio-2008#39590</a></p> <p>Is probably the best bet if I want a decent intellisense system.</p> http://stackoverflow.com/questions/39474/how-to-get-intellisense-to-reliably-work-in-visual-studio-2008/39518#39518 9 Answer by John Richardson for How to get intellisense to reliably work in Visual Studio 2008 John Richardson 2008-09-02T13:33:01Z 2008-09-02T14:30:39Z <p>Native C++ intellisense does not work reliably in any version of Visual Studio. I find there are two common problems: </p> <p>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.</p> <p>And,</p> <p>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 <a href="http://beta.stackoverflow.com/questions/15056/do-you-have-any-recommended-macros-for-microsoft-visual-studio#32884" rel="nofollow">here</a>.</p> <p><hr /></p> <p>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.</p> http://stackoverflow.com/questions/39474/how-to-get-intellisense-to-reliably-work-in-visual-studio-2008/39526#39526 0 Answer by FlySwat for How to get intellisense to reliably work in Visual Studio 2008 FlySwat 2008-09-02T13:36:33Z 2008-09-02T13:36:33Z <blockquote> <p>I don't use VS2008 for C++, only VB &amp; 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.</p> </blockquote> <p>VB and C# have much better intellisense support due to the ability to reflect on the referenced assemblies to build the intellisense tree.</p> <p>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.</p> http://stackoverflow.com/questions/39474/how-to-get-intellisense-to-reliably-work-in-visual-studio-2008/39534#39534 1 Answer by Mark Ingram for How to get intellisense to reliably work in Visual Studio 2008 Mark Ingram 2008-09-02T13:41:26Z 2008-09-02T13:41:26Z <p>@<a href="http://beta.stackoverflow.com/questions/39474/how-to-get-intellisense-to-reliably-work-in-visual-studio-2008#39518" rel="nofollow">John Richardson</a> / @<a href="http://beta.stackoverflow.com/questions/39474/how-to-get-intellisense-to-reliably-work-in-visual-studio-2008#39526" rel="nofollow">Jonathan Holland</a></p> <p>My includes are setup correctly, no problems there. I've also tried the NCB rebuild several times but it never fixes it 100%.</p> <p>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:</p> <pre><code>class MyPredeclared; class SomeOtherClass { private: MyPredeclared* m_pPointer; } </code></pre> <p>I wonder if that screws it up? Any other ideas? It definitely gets worse the larger your project gets.</p> http://stackoverflow.com/questions/39474/how-to-get-intellisense-to-reliably-work-in-visual-studio-2008/39589#39589 2 Answer by Sara Chipps for How to get intellisense to reliably work in Visual Studio 2008 Sara Chipps 2008-09-02T14:01:50Z 2008-09-02T14:01:50Z <p>Do you have any add-ins installed (or uninstalled)? I find that effects my intellisense. Besides that just making sure your Tools->Options->All Languages "Auto LIst Members" and "Parameter Information" are checked off. </p> http://stackoverflow.com/questions/39474/how-to-get-intellisense-to-reliably-work-in-visual-studio-2008/39590#39590 12 Answer by Steve Gury for How to get intellisense to reliably work in Visual Studio 2008 Steve Gury 2008-09-02T14:02:01Z 2008-09-02T15:07:53Z <p>I've also realized than Intellisense is sometime 'lost', on some big project. Why? No idea.</p> <p>This is why we have bought <a href="http://www.wholetomato.com/" rel="nofollow">Visual Assist</a> (from <a href="http://www.wholetomato.com/" rel="nofollow">Tomato software</a>) and disabled Intellisense by deleting the dll feacp.dll in the Visual studio subdirectory (C:\Program Files\Microsoft Visual Studio 8\VC\vcpackages)</p> <p>This is not a solution, just a workaround.</p> http://stackoverflow.com/questions/39474/how-to-get-intellisense-to-reliably-work-in-visual-studio-2008/927405#927405 3 Answer by Nick McCowin for How to get intellisense to reliably work in Visual Studio 2008 Nick McCowin 2009-05-29T18:18:46Z 2009-05-29T18:50:09Z <p>It looks like there's hope on the horizon for those of us unable to obtain Visual Assist:</p> <p><a href="http://blogs.msdn.com/vcblog/archive/2009/05/27/rebuilding-intellisense.aspx" rel="nofollow">Rebuilding Intellisense</a></p>