printing barcode in vb .net
I'm migrating from vb6 to vb.net and I need help in printing a barcode. In VB6, I'm using ZPL programming to print in zebra 105se printer.
Here's a sample code:
Printer.Print "^XA^PR8^XZ"
Printer.Print "^XA"
Printer.Print "^LH10,10^FS"
Printer.Print "^FD" & strTextToPrint & "^FS
How do I convert this to .net? How do I implement the PrintDocument component? Pls provide a sample code if possible.
Thanks in advance!