CodeItBetter Programming Another VB Programming Blog

How to Disallow numeric input in Text box

Posted on January 5, 2009
1
2
3
4
5
6
'Controls - How to Disallow numeric input in Text box
Private Sub Text1_KeyPress(KeyAscii As Integer)
    If IsNumeric( chr ( KeyAscii)) Then
        KeyAscii = 0
    End If
End Sub
Filed under: Controls Leave a comment
Comments (0) Trackbacks (0)

No comments yet.


Leave a comment


 

No trackbacks yet.