visual studio 2010 c++ intellisense - visual-studio-2010

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?

Related

Visual studio code c++ indent

I want to use Visual Studio Code instead of Visual Studio C++,
but what bothers me is that auto indent.
I want Visual Studio Code to auto indent like Visual Studio C++. See the difference in below images
Visual Studio Code
Visual Studio C++
How to modify VS Code settings to works like VSC++?
Please help!

visual studio 2010 with cpp build tools 2015

Is it possible to compile and debug full c++11 code with visual studio 2010 ?
Is it possible to change the compiler of visual studio 2010 to use visual cpp 2015 build tools ?
Is it possible to compile and debug full c++11 code with visual studio 2010?
No, visual studio 2010 contain C++11 features, but not all of them, Here is a list of what features it supports (as well as VC++ 2015), I suggest that you could use visual studio 2015, which contain most of the features instead of Extended integer types
https://msdn.microsoft.com/en-us/library/hh567368.aspx
Is it possible to change the compiler of visual studio 2010 to use visual cpp 2015 build tools ?
No, it is impossible, we can only select low-level Platform Toolset (such vs2008). So I suggest you could visual studio 2015.

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.

Migration from mfc to Qt in Visual Studio 2010

I want to replace my MFC Code with Qt. I found this website http://doc.qt.digia.com/solutions/4/qtwinmigrate/winmigrate-walkthrough.html and they say that it works with VS6.
My question is now if I can use this site as a guideline for the replacement with Visual Studio 2010 to and if anyone has experience with Walkthrough on Visual Studio 6?
Thanks

C++ environment with intellisense

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.

Resources