Hi everyone. I have a label print which prints from a prn file, as in:
On entering a valid printer port eg. USB003 or ESDPRT001 (as found on my computer) it prints text on the VB6 formAttachment 97925
I have tried
but it still does send the codes to the printer.
Any help gladly received, thank you.
Code:
Open "LPT1:" For Output As #1
Print #1, strStringToPrint
Close #1
I have tried
Code:
For Output Access Write As #1
Any help gladly received, thank you.