Created
January 28, 2017 05:38
-
-
Save ndthanh/ac7289a85bf0bf73dbd8fd5e6707bba5 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Private Sub cbSetText_Click() | |
MsgBox myTextbox.Value | |
End Sub | |
Private Sub myTextbox_KeyPress(ByVal KeyAscii As MSForms.ReturnInteger) | |
Select Case KeyAscii | |
Case Is < vbKey0, Is > vbKey9 | |
KeyAscii = 0 | |
Beep | |
End Select | |
End Sub |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment