try to send string to rs232 - But without success
-
hi i try to print trought Windows-Mobile to TSC TA200 printer But without success... this is my code: private static void SendSampleData() { SerialPort portZ = new SerialPort("COM1", 115200, Parity.None, 8, StopBits.One); // i try allso 9600 portZ.Open(); portZ.Write("Hello World"); portZ.Write(new byte[] { 0x0A, 0xE2, 0xFF }, 0, 3); // i try to send bites portZ.Close(); } i try to change allso the com to com2,com3.... and play with the baudrate to 9600,4800.... but still no success **There is no error but does not print - nothing happens**
-
hi i try to print trought Windows-Mobile to TSC TA200 printer But without success... this is my code: private static void SendSampleData() { SerialPort portZ = new SerialPort("COM1", 115200, Parity.None, 8, StopBits.One); // i try allso 9600 portZ.Open(); portZ.Write("Hello World"); portZ.Write(new byte[] { 0x0A, 0xE2, 0xFF }, 0, 3); // i try to send bites portZ.Close(); } i try to change allso the com to com2,com3.... and play with the baudrate to 9600,4800.... but still no success **There is no error but does not print - nothing happens**