Jump to content
Xtreme .Net Talk

Recommended Posts

Posted
I've just tended to check with Char.IsLetterOrDigit

 

Ok, I tried this:

   Private Sub MyControl_KeyDown(ByVal sender As System.Object, ByVal e As System.Windows.Forms.KeyEventArgs) Handles Lista.KeyDown

       Dim PressedChar As Char = Chr(e.KeyCode)
       If Char.IsLetterOrDigit(PressedChar) Then
           MsgBox("You pressed: " & PressedChar)
       End If

   End Sub

 

Odly the IsLetterOrDigit is true if I press any of the F#-keys. Can you suggest some other conversion method from key to char?

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...