where the data comes from?
anyways, the following should work
Code:' ' HEX to DEC ' ---------- Decimal=((Hexadecimal>>4)*10)+(Hexadecimal & $0F) ' ' DEC to HEX ' ---------- Hexadecimal=((Decimal/10)<<4)+(Decimal // 10)
where the data comes from?
anyways, the following should work
Code:' ' HEX to DEC ' ---------- Decimal=((Hexadecimal>>4)*10)+(Hexadecimal & $0F) ' ' DEC to HEX ' ---------- Hexadecimal=((Decimal/10)<<4)+(Decimal // 10)
Last edited by mister_e; - 10th December 2006 at 19:24.
Steve
It's not a bug, it's a random feature.
There's no problem, only learning opportunities.
Bookmarks