Hello,

I read in Qbytesarray doc and try this code,

QByteArray ba;
ba.resize(5);
ba[0] = 0x3c;
ba[1] = 0xb8; ->
ba[2] = 0x64;
ba[3] = 0x18;
ba[4] = 0xca;->

but appear it's show error and can only input until "0x7f" or 127, how if I want to input data for example "0xff".


thanks