- Home
·
- Miscellaneous
·
- This piece of code will keep the user from entering text into a text box without having to set the
This piece of code will keep the user from entering text into a text box without having to set the
This piece of code will keep the user from entering text into a text box without having to set the 'enabled' property to false.
Rate This piece of code will keep the user from entering text into a text box without having to set the
(1(1 Vote))
KeyCode = 0
End Sub
Private Sub YOUR-TEXTBOX_KeyPress(KeyAscii As Integer)
KeyAscii = 0
End Sub
This piece of code will keep the user from entering text into a text box without having to set the Comments
No comments yet — be the first to post one!
Post a Comment