johnsun1976
Programmer
Hi. I'm wondering how I can capture the Enter key and send a tab to go to the next control?
Thanks
John
Thanks
John
Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
void urctrl_KeyDown(object sender, KeyEventArgs e)
{
if(e.KeyCode == Keys.Enter)
urctrl.SelectNextControl(urctrl, true, true, true, true);
}