I have a textbox with lines of text representing mapped drives in it.
The first line, as an example, can be lined up as such.
Code:
 
at( 7,23) "you are connected to drive p" + chr(10) +


The next 2 lines of code will allow the next line of text to be positioned right underneath the first
Code:

$indent="23 blank spaces"
? + ($indent) + "you are connected to drive q" + chr(10) +



The problem is the text box gets overwritten with clear space by ($indent).
Any ideas or workarounds?

Without the text box I know it would be easy and fundamental but I don't do anything the easy way