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.
Visual Basic Code
Command1_Click()
Text1.Text = hexToascii(Text2.Text)
End Sub
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