Ok the situation is i have a string that looks like this:
"AA". I have a button that's suppose to increment this to "AB". When it reaches "AZ", it should turn into "BA" and so forth.
My idea was to use ascii codes 65 to 90 (A to Z) and increment the push it back into the string with chr().
Um, but how do i extract the ascii code of the character selected?
"AA". I have a button that's suppose to increment this to "AB". When it reaches "AZ", it should turn into "BA" and so forth.
My idea was to use ascii codes 65 to 90 (A to Z) and increment the push it back into the string with chr().
Um, but how do i extract the ascii code of the character selected?