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

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.

Related

Does Visual Studio 2019 have a form designer for c++?

Before deciding to download Visual Studio 2019, I just wanted to know whether a visual form designer is available that generates c++ code.
If not, does anyone know of an easy to use development environment that does?
Thanks.

ATL VS C++ 2010

I start using the visual studio c++ express 2010 at home but there is no ATL and MFC in it.
How can I add ATL/MFC to visual studio c++ express 2010?
There is no support for MFC and ATL for Express editions. Refer http://msdn.microsoft.com/en-gb/library/hs24szh9.aspx for comparison between editions.
ATL, MFC, and OpenMP are not supported in Visual C++ Express 2010.
Visual C++ Product Comparison (see the Libraries and Headers section)
I guess, Microsoft would not mind much if you try to learn MFC at home. There is a possibility to work with existing MFC projects in VC++ Express: How to compile MFC code in Visual C++ Express

how to enable c++ support in visual studio 2010?

I want to create a C++ project in Visual studio 2010 but I don't
see any template for a C++ project. All I see is visual c# templates.
Please let me know how to enable c++ support in visual studio 2010.
You likely have Visual Studio installed without the C++ compiler. You have to start the installer and alter the installation so that C++ compiler is installed.
You probably need to reinstall it. During installation there is a choice of languages and features. Probably C++ was not chosen when it was installed on your system.

Is MFC only available with Visual Studio, and not Visual C++ Express?

Is MFC only available with Visual Studio, or is it also possible to use it with Visual C++ Express?
Now there exists a solution to this problem, for all the people want to use a free version.
Visual Studio Community 2013 comes with the MFC (Microsoft Foundation Classes) included. Download link: https://www.visualstudio.com/products/visual-studio-community-vs
Edit: Visual Studio Community 2015 is now also released.
From the FAQ:
Does Visual C++ 2008 Express Edition
include MFC and ATL?
No, MFC and ATL are not included with
Visual C++ 2008 Express. MFC and ATL
will be included in Visual Studio 2008
Standard and above editions.
Same for Visual C++ 2010 Express Edition.

Making a .exe in Visual Studio 2008

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