Is there a way to add graphics to a program in C++ to make it look more fancy and just the boring type DOS window?
Printable View
Is there a way to add graphics to a program in C++ to make it look more fancy and just the boring type DOS window?
=> Subsystem : Windows
If I get you correctly, you are asking about bringing some graphics into plain console application, right? If yes, I wonder what is your idea about how such window would look like?
Thanks guys...let me start learning
Obviously working with graphics means moving from a console application to a GUI-based one. You can either dive all the way into that using one of the GUI packages out there (either Windows-specific, or cross-platform), or you can go "just far enough" using one of the basic packages like GLUT which will allow you to play around with OpenGL a bit.