duh,

as well missed to mention that the Wordwrap Checkbox is know called 'Borders' which will influence posting as shown here :

unchecked :

break on

$_ = setoption("ASCII","ON")

$a = 1
cls
while $a < 5 ;Change this value to get more or less numbers
$y = 1
while $y <= 80
$z = 1
while $z <= 20
at($z,$y) "$x " + chr($x)
$z = $z + 1
$x = $x + 1
loop
$y = $y + 10
loop
? shell "%comspec% /c pause"
$a = $a + 1
loop
exit


and checked :

break on

$_ = setoption("ASCII","ON")

$a = 1
cls
while $a < 5 ;Change this value to get more or less numbers
$y = 1
while $y <= 80
$z = 1
while $z <= 20
at($z,$y) "$x " + chr($x)
$z = $z + 1
$x = $x + 1
loop
$y = $y + 10
loop
? shell "%comspec% /c pause"
$a = $a + 1
loop
exit
_________________________