That did indeed fix the double byte characters in the QString.. however i still have many additional bytes where on the 0x02 should be...
So, i made a test..
with this code:Qt Code:
QByteArray data; out << int(0x02); tcpSocket->write(data);To copy to clipboard, switch view to plain text mode
I get this on the network..
0x00000002
What I need to see is :
0x02
Is there a different way to define this instead of int(0x02) to make do only this hex character? and not the additional nulls?
Thanks for the assistance...
Bookmarks