I wrote a C ++ application that I created using g ++.
In order to demonstrate this code, I want to create a simple graphical interface for Windows, I thought that creating it using the Visual Studio GUI would be a fairly simple task.
With some stress, I got to the point that I can create and run a C ++ application through the Visual Studio 2010 workspace.
So, I add a new class, I select "Windows Form", it gives me a form that I can drag stuff onto, fine. How the hell am I integrating this?
Can I not just instantiate this class in my main function?
How do I get a form to show at program startup?
I really donβt know where to start, my experience is using C and Java, I donβt have much experience with C ++, and I absolutely do not know about Visual Studio.
All I want is a GUI class for handling user input, and right now it seems incredibly difficult.
Any guidance would be greatly appreciated; I will return to this when my blood pressure returns to a safe level.
Lefti source
share