Only numbers in TextBox (1 line, it's too easy)
Only numbers in TextBox (1 line, it's too easy)
Rate Only numbers in TextBox (1 line, it's too easy)
(1(1 Vote))
Private Sub Text1_KeyPress(KeyAscii As Integer)
If Not IsNumeric(Chr(KeyAscii)) Then KeyAscii = 0
End Sub
Only numbers in TextBox (1 line, it's too easy) Comments
No comments yet — be the first to post one!
Post a Comment