How to get next letter in alphabets

@thima

First you need to find out the ASCII value of that character.

             Int value = Asc("your input")
             value = value + 1

And then convert ASCII integer value back to character as below.

              Char newValue = Chr(value)

Here newValue is next letter of given alphabet.

4 Likes