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.
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
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.