Futurebasic/Language/Reference/close lprint
CLOSE LPRINT statement
editSyntax
editCLOSE LPRINT
Revised
editNovember, 2006 (FB 4, Revision 4)
Description
editAfter output has been routed to the printer, CLOSE LPRINT
informs the Print Manager that the print job is complete. The current page is printed and the print job closed. You should execute a ROUTE _toScreen
statement immediately before or after calling CLOSE LPRINT
.
Notes
editBefore using CLEAR LPRINT
or CLOSE LPRINT
, you must route printing to the screen. Closing the printer while output is pointing to the printed page is equivalent to cutting off a limb while you are sitting on it. The following fragment shows how this might be done.
ROUTE _toScreen
CLOSE LPRINT
Example
editNEED IMG!!! <img src="res/cd.gif" alt="" height="19" width="20" border="0"> CD Example: Printer.BAS
See Also
editCLEAR LPRINT
DEF LPRINT
DEF PAGE
ROUTE_toPRINTER
ROUTE toSCREEN