How to convert Hexadecimal number to Decimal number
Posted on January 5, 2009
1 2 3 4 5 6 7 8 | 'Math - How to convert Hexadecimal number to Decimal number Option Explicit Private Sub Main() strHexValue = "5A14" Call MsgBox(Val("&H" + strHexValue)) End Sub |