[futurebasic] LPRINT

Message: < previous - next > : Reply : Subscribe : Cleanse
Home   : October 2004 : Group Archive : Group : All Groups

From: Brian Heibert <bheibert@...>
Date: Sat, 09 Oct 2004 16:55:24 -0500
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