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.
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 )
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.
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?