Making a .exe in Visual Studio 2008 - c++

Could anyone be kind, and tell me how to make a exe file in visual studio 2008 for a win32 console based, c++ program? Thanks

Try using the Win32 Console Application type in the New C++ wizard. Building this will produce a native C++ executable application.

http://www.youtube.com/watch?v=Bb7sxUNuFe4

See msdn visual studio tutorial

Related

How to i open this applications is visual studio so i can run the code?

I have this application code on the following remote server
https://svn.reactos.org/reactos/trunk/reactos/base/applications/rapps_new/
I have tried making a windows application in visual studio and adding the files to it, but it doesn't compile.
Whats the correct way to run the code?
You need to use CMake to generate a Visual Studio solution for the project. Then you will be able to import your solution into Visual Studio and build it.

visual studio creating vb windows form in c++ project?

Is it possible to create visual basic(vb) windows form in c++ project in visual studio? and how?
thanks before.
btw, I'm using visual studio community 2015
No. In C++ projects you use C++ and in VB projects you use VB.

(Visual Studio 2015) Unable to create Win32 C++ app

I have visual studio 2015 community Update 2.
I've installed Visual C++ for windows and also for mobile platforms as you can see in this picture:
The problem is that when I try to create a C++ Win32 app and click on these two templates
nothing happens and I get stuck at that screen.
As Cheers and hth Alf said, I had to reinstall the whole Visual Studio 2015 to get it working again.

Embed Visual Studio editor into my app

Is it possible to embed Visual Studio 2010 (Express ?) source code editor into my application.
What is another most preferred way to interconnect my application with Visual Studio?
Don't want to embed my app into visual studio for some religious reasons =)
If you don't want to make your application a plug-in then make a plug-in that provides an interface for your application using some sort of IPC.
Also see Embed Visual Studio 2010 Editor into a Tool Window. As far as I understand, application has to be a plug-in/extension in order to do that.
MSDN How to: Get References to the DTE and DTE2 Objects
http://msdn.microsoft.com/en-us/library/68shb4dw.aspx
is interesting starting point for solving my problem.

Is there a work around way to compile MFC files in Microsoft Visual C++

Is there a work around way to compile MFC files in Microsoft Visual C++ 2008 Express Edition
I'm not 100% sure, but I think that Windows Driver Developer Kit contains MFC 4.2 headers and libraries. I newer tested if this is enough to compile even simple MFC application using Express Edition of VS, but I guess this is your only chance.
Perhaps you can find an old copy of the visual studio environment?