ASCII Generator

By | 2002-06-01

Generates ASCII Value for every known character to a textbox. Good for developement using character…and stuff.
NOTE: PEOPLE WHO DOWNLOAD AND RAN THE ZIPPED VERSION OF THIS CODE MAY HAVE A VIRUS ON THEIR SYSTEM CALLED WIN95.CIH. YOU CAN LOOK IT UP AT NORMAN.COM. IF YOU ARE ONE OF THESE PEOPLE PLEASE DELETE THE FILE AND RUN A SYSTEM CHECK WITH A VIRUS SCANNER. SORRY FOR THE INCONVENIENCE.

Original Author: Jared Collums

Code

Function ASCIItoList(ListBox As Object)
Dim Character As Long
For Character& = 33 To 223
ListBox.AddItem Chr(Character&)
Next Character&
End Function
Private Sub Form_Load()
ASCIItoList List1
End Sub
Private Sub List1_Click()
Text1.Text = "Chr(" & List1.ListIndex + 33 & ")"
End Sub

Author: dwirch

Derek Wirch is a seasoned IT professional with an impressive career dating back to 1986. He brings a wealth of knowledge and hands-on experience that is invaluable to those embarking on their journey in the tech industry.

Leave a Reply

Your email address will not be published. Required fields are marked *

This site uses Akismet to reduce spam. Learn how your comment data is processed.