Convert Hex to Decimal (32-bit Unsigned)
Converts Hex [0 – FFFFFFFF] to Decimal [0 – 4294967295] using Currency type to avoid the sign bit. Original Author: Larry Serflaten Inputs A valid 1-8 character Hex String Returns A Currency value in the range of 0 – 4294967295 Code Function ConvertHex (H$) As CurrencyDim Tmp$Dim lo1 As Integer, lo2 As IntegerDim hi1 As Long, hi2 As LongConst… Read More »