It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 11 years ago.
Is where any extension, for visual studio, to support intellisense for c++:
win32api,mfc,atl whatever. Or its supported, and only i can not see it?
Or any workaround or other IDE?
For example:
int main(){
Set
}
And here i want to see all available winapi functions, which starts from "Set". Is it possible?
In the following snippet:
#include <Windows.h>
int main ()
{
::Set
}
I get all completions for Win32 API functions starting with Set. If you don't like having all those references to the global namespace, you can hit Control-Space to force intellisense to show completions.
That type of C++ intellisense only appears after you hit ctrl+space.
The commercial extension Visual Assist X gives an experience that may be more what you are looking for (note that it is not supported in express editions of Visual Studio).
Related
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 9 years ago.
How is coding for create Edit control object(Cedit class) with Mingw?
I read msdn did used "afxwin.h" but cannot found with MinGw compiler.
It is you showed code as good.
The afxwin.h header is part of the MFC framework. No one has come up with a MinGW version of it. So no, you cannot use it with MinGW. Note that even if you could, you would still need to buy a version of Visual Studio that comes with MFC in order to get a license that would allow you to use MFC.
If I were you, I would look into other GUI frameworks. For example Qt (which is much nicer than MFC to begin with; MFC is a legacy framework that most people don't use anymore.)
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
I am trying to figure out the complete code as explained at:
http://www.drdobbs.com/windows/microsofts-c-amp-unveiled/231600761?pgno=2
I am trying to find out how to generate the complete code examples with of Simple C++ AMP Version? How do I define the grid object? Which header do I need to use direct3d? It seems my Visual Studio 2012 flags these as undefined.
Thanks
I've never seen restrict(direct3d) before. I suspect it's supposed to be restrict(amp).
You'll also need to #include <amp.h>
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 11 years ago.
please someone tell me how to make standalone applications in C++ Builder, without runtime files ?
I know that I must check and uncheck something in the menu, but can you tell me what exactly are they? Please make a note that I am using C++ Builder 2010
Okay, so I don't have the application in front of me and can't 100% guarantee this answer, but maybe I can help.
If I'm slightly off I'll correct this answer later.
Off the top of my head:
In the Project Settings menu, go into C++ Linker section, and set "Dynamic RTL" to false.
Then in the Packages section of the Project Settings menu, uncheck "Build with Runtime Packages".
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 12 years ago.
I want a string class in gcc, like in Visual studio
Use std::string.
If you really need it, there are CString workalikes out there. But you really should use std::string.
I don't know which string class you used in Visual Studio, still the usual std::string is standard C++ and is available in any standard-conforming C++ implementation (including g++ as well as Microsoft Visual C++).
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
How do you create MFC applications with Visual Studio express '08?
Visual C++ 2008 Express Edition does not support MFC. You need at least the Standard or Professional edition of Visual Studio. Refer to this page for a comparison of the various editions.
If you want to develop native Windows GUI aplications using the Express Edition, you could consider using WTL. See this question for more information.