Where can I get literature on changing the way the windows console displays its information?
What if I want to clear the screen at certain inputs.
Also, my console only displays certain ammount of lines so when I print screen it only shows the latest, for example, 500 lines and not all.
There is no C++ way to clear the screen, other than scrolling the text off the screen. Changing the color of text, etc. even more so!
If you are coding for a particular platfrom, you'll need to use the platform specific code: for Windows, the links that CodeMonkey and eidge posted are what you need. For Linux you'll have to dig out the equivalent (?) X Windows/GNOME/KDE calls (any Linux programmers about?)
For slick text UIs, most people would switch to CURSES.