Pelles C forum

C language => Expert questions => Topic started by: Cruil on February 08, 2011, 09:53:36 PM

Title: how to fix output text at consolel !
Post by: Cruil on February 08, 2011, 09:53:36 PM
Hello guys,
I have problem with fixing an output text on the console screen, and make the the rest of console screen for user use ..

(http://i826.photobucket.com/albums/zz183/Cruil/Capture.png)

I want the name space and the option space fixed on screen and the user space not..
can you help me ..
the code in C language..

thx in advance
Title: Re: how to fix output text at consolel !
Post by: CommonTater on February 09, 2011, 02:50:00 AM
This is called "split screen scrolling"... I believe there are console libraries for that and you may have to do some serious Googling to find them. 

Writing your own is an option but it will be a fair bit of work since you'll be essentially rewriting the text output subsystem used by the console.

Title: Re: how to fix output text at consolel !
Post by: Cruil on February 10, 2011, 09:09:53 PM
thx I try that..