Why does everything print on the same line, even though I'm adding crlfs?
问题 This will print (although still ugly) on the Zebra QL220 belt printer from my CE/CF app running on a Motorola MC3100 handheld: public void PrintBarcode(string barcode, string UPC, string description, decimal listPrice) { using (SerialPort serialPort = new SerialPort()) { serialPort.BaudRate = 19200; serialPort.Handshake = Handshake.XOnXOff; serialPort.DataBits = 8; serialPort.Parity = Parity.None; serialPort.StopBits = StopBits.One; // other choice is Two (see p. 14-21 in CPCL pdf) serialPort