06-10-2022, 05:08 AM
Honestly though, I'd think the easiest way to do something like this would be to just write a simple function to handle the indentation for you.
The above is a very simple little tab routine which advances text to the breakpoint which we desire with our printing for quick formatting and spacing.
Code: (Select All)
Print TB(5); "Name"; TB(10); "Steve the Amazing!"
Print TB(5); "Age"; TB(10); "Old Enough to know better."
Print TB(5); "Sex"; TB(10); "Not often enough!"
Function TB$ (spaces) 'tab spaces without
x = Pos(0)
If x > spaces Then Print
Locate , spaces
End Function
The above is a very simple little tab routine which advances text to the breakpoint which we desire with our printing for quick formatting and spacing.