is there any to convert a string into Hex using Vb-script?
here there is a simple guide doing this, but it seems it works only for numbers not alphabets.
is there any to convert a string into Hex using Vb-script?
here there is a simple guide doing this, but it seems it works only for numbers not alphabets.
"abc 123", what do you expect as output? And what have you attempted to get it?msgbox Hex(Asc("A")). You have to do it character by character.