Hi,
Can u help me how to print a multiline on dotmatrix printer at my prefered location.For example say address,
alan rodrigues,
abu shagara,
london.
I really appreciated if somebody can help me in this...very urgent..
regards,
rosa.
Printable View
Hi,
Can u help me how to print a multiline on dotmatrix printer at my prefered location.For example say address,
alan rodrigues,
abu shagara,
london.
I really appreciated if somebody can help me in this...very urgent..
regards,
rosa.
dim printline as string
printline = space(5) & "alan rodrigues" & vbcrlf
printer.print printline
printline = space(5) & "abu shagara" & vbcrlf
printer.print printline
printline = space(5) & "london" & vbcrlf
printer.print printline
printer.printdoc