Visual Basic 6 function that will convert the Hexadecimal value into ASCII value. Please copy the code below to module area and call the function name hexToascii like sample below.
command1_click
Text1.Text = hexToascii(Text2.Text)
End Sub
Public Function hexToascii(ByVal hextext As String) As String
For x = 1 To Len(hextext)
num = Mid(hextext, x, 2)
Value = Value & Chr(Val("&h" & num))
x = x + 1
Next x
hexToascii = Value
End Function