Is there a way to send ZPL (Zebra Programming Language) to a printer in .NET?
I have the code to do this in Delphi, but it is not pretty and I would rather not try to recreate it in .NET as it is.
Answer from the post in the accepted answer:
    [DllImport("kernel32.dll", SetLastError = true)]
    static extern SafeFileHandle Create...
            
           
          
            
            I'm trying to print extended code page 850 characters using ZPL II to a Zebra S4M.  Whenever one of the extended characters I.E. ASCII value > 127 is used I get a box of varying shades of grey instead of the actual value.
I'm trying to print ± and ° (ALT+0177 and ALT+0176).  I suspect its the RawPrinterHelper I am trying to use (as down...
            
           
          
            
            Hi there,
I have done this programming in java and it works but can't make it run in vb6 (and I need to)
Basically I need to send data to zebra printer over the network.
The whole process works (no error reported but the printer does not print.
In Java I have used:
 public void printOnions(ArrayList<String> DataArr){
        // LH is x...