'---------------------------------------------------------------------- ' ' x2c() - Convert hex-escaped character to ASCII ' '---------------------------------------------------------------------- Private Function x2c(s As String) As String Dim t As String t = "&H" & s x2c = Chr$(CInt(t)) End Function