Google Mobile Ads

Tuesday, August 28, 2012

Textbox içine sadece alphanumeric karakterler girilmesini sağlayan kod.


Private Sub textBox_KeyPress(........
   Dim cInvalidChars() As Char = {"~", "`", "!", "@", "#", "$", "%", "^", "&", "*", "(", ")", "_", "-", "=", "+", "{", "[", "}", "]", "|", "\", ":", ";", """", "'", "<", ",", ">", ".", "?", "/"}
   Dim result As Boolean = False
   result = cInvalidChars.Contains(e.KeyChar)
   If result Then
          e.Handled = True
   End If
End Sub

No comments:

Post a Comment

LinkWithin

Related Posts Plugin for WordPress, Blogger...