Concerning Lprint I have always wondered why:
does not work for LPT2: and LPT3: either.
so, therefore if I have 3 printers installed, which printer does Lprint goto??
or how do I point Lprint to LPT2:
Erik.
My other question was if the following is needed:
to send formfeed ascii control character to the printer..
Code: (Select All)
Open "LPT1:" For Output As #1
so, therefore if I have 3 printers installed, which printer does Lprint goto??
or how do I point Lprint to LPT2:
Erik.
My other question was if the following is needed:
Code: (Select All)
_ControlChr On
LPrint Chr$(12);
_ControlChr Off
to send formfeed ascii control character to the printer..