02-17-2006 06:45 AM
02-17-2006 10:04 AM
I'm not sure exactly what you are trying to do, but to convert a character to a string that contains the hex formatted ascii character value, you could use something like:
str(asc(Locals.myCharacter), "0x%x")
You can also extract individual characters from a string with Mid(Locals.myString, Locals.index, 1)