Strings and Manipulations
Function hexit(str As String) As String Dim I As Long 'renamed from Ron Rosenfeld's WEPConv, excel, 2005-04-26 For I = 1 To Len(str) hexit = hexit & Hex(Asc(Mid(str, I, 1))) Next I End Function Function dehex(str As String) As String Dim I As Long 'David ...