To make a textbox to enter numeric value only
To make a textbox to enter numeric value only
Rate To make a textbox to enter numeric value only
(2(2 Vote))
Private sub text1_keypress(KeyAscii As Integer)
if KeyAscii >= vbKey0 And KeyAscii <= vbKey9 Or KeyAscii = 8 Then
Exit Sub
Else
KeyAscii = 0
MsgBox " Only Numeric Value ", vbExclamation, "Number"
End If
End sub
To make a textbox to enter numeric value only Comments
No comments yet — be the first to post one!
Post a Comment