on Jul 15th, 2017, 5:50pm, CirothUngol wrote:| Is there a way to avoid this? |
|
Actually I think there is a workaround of sorts. If you output the string in chunks of no more than (say) 80 characters I would not expect the wraparound effect to occur. Try this for example:
Code:FOR i = 1 TO 255
v$ = v$; "-"
PRINT LEFT$(v$,80);
PRINT MID$(v$,81,80);
PRINT MID$(v$,161,80);
PRINT MID$(v$,241,80)
NEXT i
This will affect the output only when compiled as a console application.
Richard.