Welcome!

By registering with us, you'll be able to discuss, share and private message with other members of our community.

SignUp Now!

Display problem

Jul
50
1
I have my TCC display set to black on white, and it mostly works, but sometimes it will do this: I can do a cls and it will be ok for a while. I have had this problem for a while.
 

Attachments

  • jpsoft-display-error.jpg
    jpsoft-display-error.jpg
    102.3 KB · Views: 249
Typically that's caused by doing a CLS (which, by default, fills only the visible part of the console buffer) and then scrolling down past the point which you've cleared. You can fill the entire console buffer with your choice of colors by doing something like:

Code:
cls /c black on bright white

If you want to do this in your TCSTART.BTM file, it's a good idea to check for transient or pipe shells first:

Code:
if "%_transient%%_pipe" == "00" cls /c black on bright white
 
Thanks. I have been using the product since the 4DOS 2.xx days, but still feel like I know nothing about it at times. :)
 
Back
Top