Question:
How can I return the ASCII value of any character in a string?
Solution:
To do so, you can use a script with ASC method to return the ASCII code of any letter.
Below you will see an example of script being executed in a button on a screen:
Word = “ELIPSE SOFTWARE”
Size = Len(Word)
For i=1 To Size
MsgBox ASC(Mid(Word, i, Size))
Next
How can you return the ASCII value of any character in a string using a script