1337_brad wrote:
What would you suggets I use rather than OpenGl? I heard DirectX isn't that great... I am just learning C++ but I just want to be able to make a windows program rather than a dos application... I don't want to use advanced graphics or anything just basic windows and text and such...
Doing native Windows programming with C++ without using some kinda of abstraction is insanity. Microsoft themselves are ditching this approach with the advent of .NET and other more advanced tools.
There are a huge number of C++ skills you need to understand first and foremost which can be easily explored in a command-line interface.
- variables
- functions
- pointers
- classes
- objects
- references
- std::string
- std::vector
- iterators
- input/output
- file input/output
- conditionals
- loops
- etc.
If you really want to do programming with GUIs and Windows and C++, I'd suggest wxWidgets