Creating GUI in C++

Does anyone know how to create a quick GUI in C++?

Maybe in the same way Visual C#? Drag and drop boxes, buttons, etc.
I am only looking for the basic forms stuff, tabs, treelists, buttons, editable textfields and so on.

Heard of MFC, but couldnt find any guides.
http://msdn.microsoft.com/en-us/library/d06h2x6e.aspx

Thank you.

*edit*

Also heard that i could write the GUI in Visual Basic.
Is that an easier way?

Last edited on
If you want to create GUIs in C++ as in C# you can use Visual C++ with .NET or Qt creator. (there should be also others)
To use MFC you should buy some Visual C++ version ( the express version available for free doesn't have it )

With .Net is very similar using C# VC++ or VBasic
Last edited on
Check out wxDev-C++ (Windows only). The IDE is free and open source, and uses the wxWidgets library for building GUIs. Under Linux, I use wxGlade to build the GUI and NetBeans for an IDE. Works great.
Thank you.

I dont know Dev C++, so dont think that is for me.
I looked at Qt, but i didnt understand it.
Then i found out that VC++ has the same thing as VC#, just that you have to create a Resource Item.


Now i'd like some guides so i can make it alive.
Any guide on how to tell it to do this when i press this button, link this textbox so this array, create nodes in the treelist by reading this array and so on?
Topic archived. No new replies allowed.