Hi!
Well i have a question for check keypress for multiple textbox with public sub.
Heres example how i have done it now for each textbox.
So i would like to make one sub wich to call for keypress check.
-Late
Well i have a question for check keypress for multiple textbox with public sub.
Heres example how i have done it now for each textbox.
Code:
Private Sub TextBox1_KeyPress(ByVal KeyAscii As MSForms.ReturnInteger)
KeyAscii = KeyAscii * -CLng(Chr(KeyAscii) Like "[0-9]")
End Sub
-Late