954,551 Members — Technology Publication meets Social Media
Username:
Password:
Lost login information?
Have something to say? Contribute New Article Reply to this Article

Disable Paste on Textbox

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?

Aangiix3
Newbie Poster
20 posts since Nov 2011
Reputation Points: 10
Solved Threads: 0
 

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
Aangiix3
Newbie Poster
20 posts since Nov 2011
Reputation Points: 10
Solved Threads: 0
 

This question has already been solved

Post: Markdown Syntax: Formatting Help
You
View similar articles that have also been tagged: