Dear friends, please for advice:
Why I get from this code
this result=
but I must get
nr1=0001
nr2=0014
nr3=04D2
What I am doing wrong, please?
Thank you
p4ppc
Why I get from this code
B4X:
Dim bc As ByteConverter
Dim nr1() As Byte = bc.HexFromBytes(bc.IntsToBytes(Array As Int(1)))
Dim nr2() As Byte = bc.HexFromBytes(bc.IntsToBytes(Array As Int(20)))
Dim nr3() As Byte = bc.HexFromBytes(bc.IntsToBytes(Array As Int(1234)))
this result=
nr1=0100
nr2=1400
nr3=D204
but I must get
nr1=0001
nr2=0014
nr3=04D2
What I am doing wrong, please?
Thank you
p4ppc