Results 1 to 2 of 2

Thread: PROBLEM wat a charracter

  1. #1

    Thread Starter
    Member
    Join Date
    Apr 2001
    Location
    belguim
    Posts
    61

    Unhappy PROBLEM wat a charracter

    if i have a unknow character like that | (sort of that)
    of can i know what knid it is

  2. #2
    Matthew Gates
    Guest
    Do you mean you want to find out it's key code number? Use the Asc function.


    Code:
    Private Sub Command1_Click()
        MsgBox Asc("|") 'returns 124
        MsgBox Chr$(124) 'returns |
    End Sub

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