Hi, I need help to convert 2 bytes from a string to string and show in my app ex:
Dim str As String
dim ii as int
str= 00 00 00 A9 -> byte0=00 byte1=00 byte2=00 byte3=A9 heximal
I need to add number 2 to A9 and show in a EditText.
how to do this with B4A ?
like this:
ii=str.SubString2(3,3)+2
Dim str As String
dim ii as int
str= 00 00 00 A9 -> byte0=00 byte1=00 byte2=00 byte3=A9 heximal
I need to add number 2 to A9 and show in a EditText.
how to do this with B4A ?
like this:
ii=str.SubString2(3,3)+2
Last edited: