You won't use lprint anymore. To need to open the printer object as a file. Personally, I never use 'Lprint'.
printer = freefile
open "lpt2:" for output as #printer
print #printer, "This is printed on lpt2:"
print #printer, chr$(12);
close #printer
You can have a max of 3 printers this way.
David Paulson