I need to send the following command to a Zebra Label Printer:
q270
everything I can find online tends to be in C# and I'm working in VB.Net
I was hoping this would be as simple as an example I found online
which basically was
Dim sb As StringBuilder
sb.AppendLine("q270")
RawPrinterHelper.SendStringToPrinter(printername, sb.tostring())
but RawPrinterHelper appears to be a class I don't have, every example if this I can find is in C#. They also appear to be for sending a much more complex string of text to the printer. So I am getting a little lost in it all.
Can anyone assist in sending the single q270 command to the printer?
The printer is a Zebra LP2844. It prints these little sticky labels. The command I'm sending is a EPL command.
Thanks in advance