Ascii code
Visual Basic
4
Posts
4
Posters
0
Views
1
Watching
-
Create a new application and put a button on it and listbox on it. in the buttons click event create a for loop from 0 to 255 in the loop put listbox1.items.add("Chr(loop iterator) = " & Chr(loop iterator)) that will give you the ascii chart in a listbox. The characters that are not normal characters will show up as as box. (chr(13), chr(10), ect...) Hope this helps. :-D
Recreating the wheel is the best way to appreciate what the previous coders have gone through to get you where you are at now.