Member Avatar for SeniorAlexandro

Alright, I have Textbox where I want only Numbers and Letters and backspace allowed.
I don't want copy and paste, or spacebar or other ascii charachters.
Can anybody help me?

Member Avatar for SeniorAlexandro

Solved by my own.
Here's the Code:

Private Sub Username_KeyPress(ByVal sender As Object, ByVal e As System.Windows.Forms.KeyPressEventArgs) Handles Username.KeyPress
Select Case e.KeyChar
Case Chr(65) To Chr(90), Chr(48) To Chr(57), Chr(8) 'allows a-z and 0-9 plus backspace
Case Chr(97) To Chr(122), Chr(8) 'allows a-z plus backspace
Case Else 'everything else than above
e.KeyChar = Chr(0) 'wont be accepted
End Select
End Sub
Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.