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 |
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 |