Re: Sending ZPLII Code to Zebra RW220 via Serial Port

Tech Tip: Click here to run a free scan for Windows Errors and optimize PC performance



I print on an RW 420 and that comes with an interop library.


private static ZebraPrintCtlClass ZebraPrinter;
public void Print(int portNumber, int baudRate, string printData)
{
try
{
ZebraPrinter.SerialConnection(string.Format("COM{0}:", portNumber), baudRate);
ZebraPrinter.Open();
ZebraPrinter.Print(printData);
}
finally
{
ZebraPrinter.Close();
}
}


Is that how you are printing?


Pete

.