why do I get an error "print error 482" when I run my program on a PC that doesn't have VB6? It's as if it doesn't see my printer...
It works perfectly on a PC with VB6.
printer.print "123"
thanks
Printable View
why do I get an error "print error 482" when I run my program on a PC that doesn't have VB6? It's as if it doesn't see my printer...
It works perfectly on a PC with VB6.
printer.print "123"
thanks
Don;t you have to say enddoc.Quote:
Originally posted by 2000a
why do I get an error "print error 482" when I run my program on a PC that doesn't have VB6? It's as if it doesn't see my printer...
It works perfectly on a PC with VB6.
printer.print "123"
thanks
VB Code:
printer.print "123" printer.enddoc
printer.enddoc goes at the end of the print job...
I have to print multiple lines:
printer.print "1"
printer.print "2"
printer.print "3"
printer.enddoc
but it crashes at the first line printer.print "1"