Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Option Explicit
Private Sub Command1_Click()
MsgBox Hex2Dec(Text1.Text)
End Sub
Private Function Hex2Dec(ByVal sHex As String) As Long
On Error Resume Next
Hex2Dec = Val("&H" & sHex)
End Function