Results 1 to 5 of 5

Thread: What is Chr(25) ?

  1. #1
    Guest
    Hey.. I was just wondering if anyone could point me in the direction that has a listing of what every ASCII value is (like how Chr(9) is a tab).

    Thanks,
    Jordan

  2. #2
    Guest
    The MSDN help has a list. In the index, type in "ASCII Character Set", and voila!

    ASCII 25 is not used in windows, unless you are catching the Ctrl-Y as a KeyAScii in a text box or something.

    - gaffa

  3. #3
    Dazed Member
    Join Date
    Oct 1999
    Location
    Ridgefield Park, NJ
    Posts
    3,418
    If i dont feel like looking up the character set or if i cant find it. Ill use a loop.

    Private Sub Command1_Click()
    Dim i As Integer
    For i = 1 To 255
    Debug.Print i; Chr(i)
    Next i
    End Sub

    It comes in handy sometimes.




  4. #4
    Frenzied Member
    Join Date
    Aug 2000
    Location
    O!
    Posts
    1,177
    Here is a handy site for ascii codes:

    http://members.tripod.com/~plangford/index.html

  5. #5
    Guest
    Look up "ASCII" in the VB Help file.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width