Hi! I want to use ASCII to display characters
I.E the letter "T" has the ASCII codes:
HEX = 54
DEC = 84
OCT = 124.
So i wonder how i can use this information to display the character T in a string. Like get T in a message box.
Thnx
Hi! I want to use ASCII to display characters
I.E the letter "T" has the ASCII codes:
HEX = 54
DEC = 84
OCT = 124.
So i wonder how i can use this information to display the character T in a string. Like get T in a message box.
Thnx
How do i use ASCII code to display characters?
connect2sandeep
Hi
You can use the chr function in the Microsoft.VisualBasic namespace and pass the decimal value to retrieve the string "T":
MessageBox.Show(Chr(84))
HTH