Re: Sending ZPLII Code to Zebra RW220 via Serial Port
- From: "Peter Morris" <mrpmorrisNO@xxxxxxxxxxxxx>
- Date: Sat, 2 Aug 2008 08:21:44 +0100
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
.
- Follow-Ups:
- Re: Sending ZPLII Code to Zebra RW220 via Serial Port
- From: Charlie
- Re: Sending ZPLII Code to Zebra RW220 via Serial Port
- References:
- Sending ZPLII Code to Zebra RW220 via Serial Port
- From: Charles Crawford
- Sending ZPLII Code to Zebra RW220 via Serial Port
- Prev by Date: How to start a Process as administrator mode
- Next by Date: How to do something automatic before call a method?
- Previous by thread: Sending ZPLII Code to Zebra RW220 via Serial Port
- Next by thread: Re: Sending ZPLII Code to Zebra RW220 via Serial Port
- Index(es):