i have a new pc without parallel port only usb port and since my printer is EPSON LQ2180 i use usb to parallel cable.i have the following code in vb6 that does not work with my current pc:
open "lpt1" for output as #1
print #1, "PRODUCTION REPORT FOR THE MONTH"
print #1, "SORT BY ASSURED"
close #1
the above code works well in my laptop with parallel port.
i badly need help so i can use the above code to print using my pc with usb port.
thanks in advance
open "lpt1" for output as #1
print #1, "PRODUCTION REPORT FOR THE MONTH"
print #1, "SORT BY ASSURED"
close #1
the above code works well in my laptop with parallel port.
i badly need help so i can use the above code to print using my pc with usb port.
thanks in advance
Comment