on Dec 9th, 2013, 04:22am, XephreWolf wrote:I was just wondering if there are any plans for fixing this? |
|
I don't think it would be easy to make CLS work - it sends a chr$(12) (Form Feed) character, and it's up to the receiving end how that is interpreted. The standard Windows console simply displays a symbol.
However you can clear the console screen from a LBB program:
Code:
although you will probably want to add a short delay afterwards before sending anything else:
Code: input "Line A? "; dummy
run "cmd /c cls"
timer 100, [cont]
wait
[cont]
timer 0
input "Line B? "; dummy
Richard.