HEXTODECCONVERSION Function in RapidQ2.INCWindows/Unix

A function that returns a LONG integer from a string of a hexidecimal (base 16) number. This was used  to convert HEX$ to a LONG integer (base 10) before CONVBASE$ was fixed in the Snakedile libs. This function is still included in RAPIDQ2.INC for backward compatibility

Syntax: HexToDec(HexNum$)
DIM A AS LONG,  B AS LONG
A = HexToDec(HEX$(123))
B = HexToDec(""FFFFFFFFFFFFF")

Details:
Use with the fixed libs dated 12/2006 or later.