Show all the ASCII characters in a textbox.
Show all the ASCII characters in a textbox.
API Declarations
'Make sure Text Box properties (Multiline) is TRUE.
Rate Show all the ASCII characters in a textbox.
(1(1 Vote))
txtChar.Text = ""
For a = 1 To 255
txtChar = txtChar & Chr(a) & " "
Next
Show all the ASCII characters in a textbox. Comments
No comments yet — be the first to post one!
Post a Comment