

ID: 465
Viewed: 3611
Added: Aug 19, 2002
Version:



Snippet uploaded by: snippet
Written By: Unknown
Demo: Sorry, no demo



Thank you for your vote. Please wait...
It appears you already voted for this snippet
It appears your vote value was empty


have the user enter numbers only in text box
Highlight all by clicking in box
<!---Declaration--->
none
Highlight All
<!---Code--->
Private Sub Text1_KeyPress(KeyAscii As Integer)
If Not IsNumeric(Chr(KeyAscii)) Then
KeyAscii = 0
End If
End Sub
'or
Private Sub Text1_KeyPress(KeyAscii As Integer)
If keyascii = 8 Then Exit Sub
If keyascii < 48 And keyascii > 57 Then
keyascii = 0
Beep
End If
End sub;
No Comments to show


Please completely fill out the form below if you want to review this snippet. All reviews are subject to validation.
Adding your comment. Please wait...
Thanks for adding your comment!. After further review it will be added.
There was a problem adding your comment. Please try again.
Please complete all the fields in the form before sending.