KB-50413: Returning the ASCII value of any character in a string.

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

Print Friendly, PDF & Email

Este artigo foi útil? Was this helpful?

Classificação média - Average rating 0 / 5. Count: 0

Thoughts on “KB-50413: Returning the ASCII value of any character in a string.

Leave a Reply

Your email address will not be published.Required fields are marked *