|
|
Title | KeyAscii And 223 |
Keywords | quick question, quiz |
Categories | Tips and Tricks |
|
|
Private Sub txtValue_KeyPress(KeyAscii As Integer)
If KeyAscii > 96 And KeyAscii < 123 _
Then KeyAscii = KeyAscii And 223
End Sub
|
|
- What does this code do?
- Is this a good idea?
- Can you think of an alternative?
- How could you improve the original code?
- Now is this a good idea?
|
|