C++ environment with intellisense - visual-studio-2010

does any one know of a good development environment for C++
that as working intellisense? VS seems not to have that ability on a very good scale
Plus I couldn't figure out how to enable intellisense in Visual Studios 2010.
How to enable intellisense in Visual Studios 2010?

Visual Studio has excellent support for intellisense and it is enabled.

Related

Import IntelliSense support from Visual Studio Code to Visual Studio 2013?

As title, is there any way to Import IntelliSense support from Visual Studio Code to Visual Studio 2013?
I found some language they do not have intelliSense support for Visual Studio 2013/2015, but they do have it for Visual Studio Code via typings.
Short answer this is not possible as I also was looking for go support and only VS Code has it. VS Code and VS are completely different products and they are not compatible together.

visual studio 2010 c++ intellisense

Does somebody know how can I activate the intellisense for Visual Studio 2010 compiling in c++? When I write my code, functions inside a class never appear and this make the programming very difficult.
Thanks in advance!
Make your project a pure native C++ project (No CLR). Intellisense support for C++/CLI was removed in Visual Studio 2010, so only use C++/CLI where you absolutely must.
A couple of references below:
C++/CLI IntelliSense in Visual Studio vNext (VS Team Blog)
No IntelliSense for c++/cli in visual studio 2010?

How to use Visual Studio 2010's advanced intellisense tooltip in Visual Studio 2012?

I don't know whether it is missing in Visual Studio 2012 but I wonder why I cannot see the advanced tooltip feature in 2012.
In VS2010, once you hover your mouse over a code, it displays the following:
But it is how it looks right now in Visual Studio 2012:
And it looks rather primitive compared to Visual Studio 2010.
That's from a Visual Studio Plug-in. I think it's either PowerTools or VSCommands. You should install the same plug-in in VS2012, and you should get that behavior back.
(Just confirmed that it's Productivity Power Tools that provides that feature.)

Making an extension for multiple versions of Visual Studio

I have a feeling that the Visual Studio SDK is targeted heavily towards the version of Visual Studio it is created for, so I'm wondering how to do this in the best way possible. I currently only have Visual Studio 2008, but people using Visual Studio 2010 have begun wanting to use my tool as well, and I want to help them out. There were some using Visual Studio 2005 as well. Is there any way to do this without maintaining two (or three) different versions of the tool in different versions of Visual Studio?
This question is related, maybe it helps: Does Visual Studio 2010 have backward compatibility with visual studio 2008's addins?

Is there an MRU Document order feature in Visual Studio 2010

In Visual Studio 2005/2008 you could have your documents automatically arrange by the most recently used. The registry setting doesn't work for Visual Studio 2010. Does anybody know how to enable this feature for 2010.
This was an undocumented feature in VS 2005/2008. I was a big fan of it as well, and was wondering what happened to it. It appears that they've axed the feature from VS 2010.
http://connect.microsoft.com/VisualStudio/feedback/details/526072/enable-mru-doc-ordering-in-visual-studio-2010

Resources