Hello,
Could you tell me which method should I use to convert an ASCII code to a char? Ex: converting 65 to “A”
Hello,
Could you tell me which method should I use to convert an ASCII code to a char? Ex: converting 65 to “A”
Hi,
Asc(“A”).ToString, gives a string representation of 65.
And the other way from code to char Chr(65) returns A
br,
Topi
oh, it didn’t cross my mind. thanks!