Additional Info
|
I searched for a money value (21044) and narrowed down my results and came back with 3 values: byte-52, 2bytes-21044, and 4bytes-21044. When I change the values to lets say 500000 the values change to: byte-32, 2bytes-41248, 4bytes-500000. Is there a way that I can get the 2bytes to be the same as the 4bytes? Thanks in advance.
|
Additional Info
|
Not really, a 2 byte value will only go up to 65535. 500000 is, in bytes:
0x00 0x07 0xa1 0x20 So the bottom byte is 0x20 (32) and the bottom 2 bytes are 0xa1 0x20 (41248). |
Additional Info
|
thanks for the info deity
|