Try this to achieve what I think that you are trying to do:<br>
(I am going to assume that you are printing to the printer device)<br>
<br>
.<br>
.<br>
.<br>
Printer.Print Chr(13); Chr(10); "This is your line of text";<br>
.<br>
.<br>
.<br>
<br>
This will be in a loop somewhere, waiting for a string and when it gets one it will execute the print line above. What that line does is to create a new line and then print on it, leaving the latest line printed as the bottom line.<br>
<br>
HTH,<br>
<br>
John<br>