+ 2
How can we create real windows applications using C++.
I want to create real applications using C++.
1 Odpowiedź
+ 5
Learn Win32API or MFC.
Start from here :
www.benryves.com/tutorials/winconsole
https://msdn.microsoft.com/en-us/library/windows/desktop/ff381399(v=vs.85).aspx
Learn use of colors, then move to windows, and then to GUI and other features.
You will need Visual Studio or CodeBlocks for this.
Those are the basic standards used by Microsoft in the creation of windows, dialogs and frames. Using those, one can make nice applications.
Eg -
https://code.sololearn.com/cwL1Kr251R5U/?ref=app
But if you found those difficult, you may learn how to develop GUI applications using Qt, SDL, or SFML, as they are a lot easier.