Here is another similar question. How would you get it to print the character of an ascii code? Meaning something like Asc(65) would print "A" on screen?
Never mind i got it....
Printable View
Here is another similar question. How would you get it to print the character of an ascii code? Meaning something like Asc(65) would print "A" on screen?
Never mind i got it....
Split from an old thread.
What was your solution?
Just be sure AscChar < 256.Code:Dim AscChar as Integer
AscChar = 65
MsgBox "My Ascii character is " & Chr(AscChar)
It was only to satisfy my curiosity. I couldn't remember how to do it and a websearch revealed nothing. All i used was: Chr(number)