In PB, I have a print feature to print a string directly to a Zebra label printer. The string includes Escape characters with formatting commands. It works great in my PB app.
ll_job = PrintOpen("Label",TRUE)
li_rc = Print(ll_job, ls_ZPL)
li_rc = PrintClose(ll_job)
I'm just wondering if there's a C# equivalent? I'd like to write an independent C# program to print labels.
~~~Tracy
~~~Tracy