I am trying to capture characters from console screen buffer that was written on the buffer before.
For example:
cout<<"Hello World";
is written on screen, where 'H' is on the axes (0,0). Now I want to capture 'H' at a later time.
The purpose is, I am about to make some UI component (ex. messagebox) that will overlap a working screen. And later the screen will require a refresh. For this I need a backup of whole screen in a array.
I am working in DOS (protected mode) with Borland 4.5. I'm getting to know predecessors of windows, because they are more simple. Also, I am new in programming.
Please help me with some standard method. Please don't suggest any library, I am trying to keep it simple.
Thanks in advance.
ReadConsoleScreenBuffer. – chris Oct 29 '12 at 14:41some UI component that will overlap a working screen? – Andrey Oct 29 '12 at 14:41