Results 1 to 7 of 7

Thread: ascii

  1. #1

    Thread Starter
    Frenzied Member
    Join Date
    Jun 2000
    Location
    East Providence, RI
    Posts
    1,715
    does anyone know a place where I can get the numbers for all the ascii characters?
    NXSupport - Your one-stop source for computer help

  2. #2
    Guest
    i e-mailed you an ascii program that shows everything



  3. #3

    Thread Starter
    Frenzied Member
    Join Date
    Jun 2000
    Location
    East Providence, RI
    Posts
    1,715
    I just downloaded, thanks for the quick responce (oh yea, and the program)
    NXSupport - Your one-stop source for computer help

  4. #4
    Guest
    Look up ASCII in your help file.

  5. #5

    Thread Starter
    Frenzied Member
    Join Date
    Jun 2000
    Location
    East Providence, RI
    Posts
    1,715
    thanks, but the program is more easier to use
    NXSupport - Your one-stop source for computer help

  6. #6
    Guest
    You could make your own also.

    Code:
    'Set List1 Columns to 15
    'Needed:  Listbox
    
    Private Sub Form_Load()
    For i = 33 To 255
    List1.AddItem Chr(i)
    Next i
    End Sub
    
    Private Sub List1_DblClick()
    Clipboard.SetText List1
    End Sub

  7. #7

    Thread Starter
    Frenzied Member
    Join Date
    Jun 2000
    Location
    East Providence, RI
    Posts
    1,715
    I dont really need that, but thanks anyways
    NXSupport - Your one-stop source for computer help

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