Abdul Hayee
Member
- Joined
- Mar 31, 2020
- Messages
- 24
- Programming Experience
- Beginner
Dear All
I have a string which is actually a HEX representation and i want to convert it into decimal and show on textboxes. following is the string and explaination of it.
01 is Hex and decimal of this is 1 (want to show this decimal no in a textbox)
04 is Hex and decimal of this is 4 (want to show this decimal no in a textbox)
20 is Hex and decimal of this is 32 (want to show this decimal no in a textbox)
so on....
Kindly guide me how to start doing this?
I have a string which is actually a HEX representation and i want to convert it into decimal and show on textboxes. following is the string and explaination of it.
Above is the string of HEX without any space. acutally it is like that010420003C0064003C006409E207A313EC1324000000000000000000000000000000002E45
01 04 20 00 3C 00 64 00 3C 00 64 09 E2 07 A3 13 EC 13 24 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 2E 45
01 is Hex and decimal of this is 1 (want to show this decimal no in a textbox)
04 is Hex and decimal of this is 4 (want to show this decimal no in a textbox)
20 is Hex and decimal of this is 32 (want to show this decimal no in a textbox)
so on....
Kindly guide me how to start doing this?