Liberty BASIC Help Online |
DUMP
Description:
This statement forces anything that has been LPRINTed to be sent to the Print Manager to commence printing immediately. If DUMP is not issued, the LPRINTed text will be printed, but it might not be printed right away.
Usage:
'sample program using LPRINT and DUMP
open "c:\autoexec.bat" for input as #source
while eof( #source ) = 0
line input #source, text$ 'print each line
lprint text$
wend
close #source
dump 'force the print job
end
Copyright (C) 2003 Shoptalk Systems
Liberty BASIC - http://www.libertybasic.com/