[.net] Forcing a key press on a control

Started by
1 comment, last by gellin 15 years, 4 months ago
So I have some code where I want to force either the up or down key on a control. I am able to do this:

        protected override bool ProcessCmdKey(ref Message msg, Keys keyData)
        {
                    SendKeys.Send("{TAB}"); //sends the tab to the next control
                    
                    //process the up/down key
                    if (keyData == Keys.Up)
                        SendKeys.Send("{UP}");
                    else if (keyData == Keys.Down)
                        SendKeys.Send("{DOWN}");

                    base.ProcessCmdKey(ref msg, keyData);

                    //go back to the original control
                    SendKeys.Send("+{TAB}");
        }
This relies on the fact that the tabs are set up correctly. I would rather do something like this:

                    
                    controlThatNeedsInput.Focus();
                    
                    //process the up/down key
                    if (keyData == Keys.Up)
                        SendKeys.Send("{UP}");
                    else if (keyData == Keys.Down)
                        SendKeys.Send("{DOWN}");

                    base.ProcessCmdKey(ref msg, keyData);

                    originalControl.Focus();

This doesn't work however. The focus appears to change in code but the SendKeys never fires off in the control that just received focus. Any ideas on how to fix this or if there's a better way?
Advertisement
I think you'll have better luck with sending messages directly to the controls message pump. You can use the Win32 API SendMessage function to do that: http://pinvoke.net/default.aspx/user32/SendMessage.html.

Construct a WM_KEYDOWN/WM_KEYUP message pair and send them to your control. Then you don't need to mess with focus.
That works perfectly! Thanks!

This topic is closed to new replies.

Advertisement