Only let Numeric values in the text box
Only let Numeric values in the text box
Rate Only let Numeric values in the text box
(1(1 Vote))
'-- If anything is pressed besides 0 - 9 the dont let it be processed
If KeyAscii < 48 Or KeyAscii > 57 Then
If KeyAscii <> 8 Then KeyAscii = 0
End If
End Sub
Only let Numeric values in the text box Comments
No comments yet — be the first to post one!
Post a Comment