Another dumb question

be58d2003

Regular
Joined
Mar 23, 2003
Messages
81
Location
Antioch, California
I finally learned how to make an application recognize keyboard input (through the use of these forums... thank you all). But my question is... While experimenting with things, I added a button to the form and now it doesn't recognize keyboard inputs?! What am I doing wrong?
 
The button probably has the focus after startup.

You Eventhandlers propably try to fetch Form_KeyPress, but nobody cares for Button_KeyPress. So now all KeyPress Events go by unnoticed.
 
Back
Top