11-29-2025, 11:30 AM
Hi,
I was programming a print line with the tab() function, and found it to print way too far on the line. While normally Tab() neatly prints next text on the same position in the line(s).
Isolation the code and doing some experimenting shows that Tab() works fine without console, but in the console it seems a constant bunch of spaces. Is this meant to be? I can't find notes on this.
Output, run with and without the two console lines:
![[Image: Screenshot-2025-11-29-120941.png]](https://i.ibb.co/TMGfbdMW/Screenshot-2025-11-29-120941.png)
For now, I will add some code to resolve this manually. But is this a bug, or a feature?
Thanks!
I was programming a print line with the tab() function, and found it to print way too far on the line. While normally Tab() neatly prints next text on the same position in the line(s).
Isolation the code and doing some experimenting shows that Tab() works fine without console, but in the console it seems a constant bunch of spaces. Is this meant to be? I can't find notes on this.
Code: (Select All)
$CONSOLE:ONLY
_DEST _CONSOLE
zipfile$ = "TestingFile.zip"
datetab = LEN(zipfile$) + 4 ' v1.2
PRINT zipfile$; "<<"
PRINT LEN(zipfile$)
PRINT datetab
' ~~~~~
PRINT "hoi"; TAB(datetab); "test"
PRINT "hoihoihoihoi"; TAB(datetab); "test"Output, run with and without the two console lines:
![[Image: Screenshot-2025-11-29-120941.png]](https://i.ibb.co/TMGfbdMW/Screenshot-2025-11-29-120941.png)
For now, I will add some code to resolve this manually. But is this a bug, or a feature?
Thanks!

