CASE UCASE$(LEFT$(lineStr,7)) = "LPRINT " printout$ = MID$(lineStr,8) ROUTE _toPrinter DO PRINT printout$ UNTIL printout$ = "" ROUTE _toScreen CLEAR LPRINT: CLOSE LPRINT I have this code above in my program... My problem is it prints 1 line of text on more than 1 page for example Line 1 would be on page 1 Line 2 would be on page 2 How do I get it so Line 1 & Line 2 are both on page 1? Brian