bgreenhouse
Technical User
Simple question:
I want to put a degree sign in a variable that will be assigned to a variable text field. I know the ascii escape code (Not in front of me now, let's say it's (escape sequence here - Tek-Tips keeps processing it for me)).
I set the variable like as an array in the beginning:
Then later I set the variable that is the variable text field equal to that array element:
I've tried all variations of unescape and everything, but I can't get it to display anything but the actual escape sequence (ampersand-numbersign-whatever-the-code-is-plus-a-semi-colon)...
Any suggestions?
Ben
I want to put a degree sign in a variable that will be assigned to a variable text field. I know the ascii escape code (Not in front of me now, let's say it's (escape sequence here - Tek-Tips keeps processing it for me)).
I set the variable like as an array in the beginning:
Code:
quiz[x][3] = "Must use 150 (escape sequence) F water"
Then later I set the variable that is the variable text field equal to that array element:
Code:
varfortext = quiz[x][3]
I've tried all variations of unescape and everything, but I can't get it to display anything but the actual escape sequence (ampersand-numbersign-whatever-the-code-is-plus-a-semi-colon)...
Any suggestions?
Ben