Create a text box that ONLY excepts numbers
Create a text box that only allows Numbers in it, no letters great for Numeric Applications!
Inputs
Textbox: Name:Text1
Rate Create a text box that ONLY excepts numbers
(4(4 Vote))
Private Sub Text1_KeyPress(KeyAscii As Integer)
Select Case KeyAscii
Case 48 To 57
Case 8
Case Else
Beep
MsgBox "Visit:http://members.xoom.com/RYANMP5/ for more code!"
KeyAscii = 0
End Select
Create a text box that ONLY excepts numbers Comments
No comments yet — be the first to post one!
Post a Comment