CodeItBetter Programming Another VB Programming Blog

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

Related posts:

  1. How to convert Decimal Number to Hexadecimal Number
  2. How to Convert Decimal to Hexadecimal
  3. How to Convert Hexadecimal to Decimal
  4. How to convert Binary Number to Decimal Number
  5. How to convert Decimal Number to Binary Number
  6. How to Convert a decimal number into a Roman number?
  7. How to convert RGB value to Long
  8. How to Conversion (Binary, Hexa Decimal, Octal, Decimal)
  9. How to Convert Binary to Decimal
  10. How to convert Octal to Decimal number

Filed under: Math Leave a comment
Comments (0) Trackbacks (0)

No comments yet.


Leave a comment


No trackbacks yet.