I have a couple different keypress events throughout my application but it has come to my attention that they don't work for everyone and am curious as to why. Most are very, very simple and are typically me just setting enter key behavior to call buttons and such.
Here is a snip of one:
When I hit either enter key on my computer, it works just fine but for others hitting either enter key does nothing. Is there some global property I need to set for it to work for everyone consistently?
Here is a snip of one:
Code:
If KeyAscii = 13 Then
Call LoginBtn_Click
End If
When I hit either enter key on my computer, it works just fine but for others hitting either enter key does nothing. Is there some global property I need to set for it to work for everyone consistently?