J
jason
hi,
I need to trap combination keys Alt+DownArrow in KeyDown events, but without
any success. Here is the code :
private void myTextBox_KeyDown(object sender, KeyEventArgs e)
{
if(e.KeyCode == Keys.Down && e.Alt)
{
MessageBox.Show("Pressed");
}
}
Thanks.
I need to trap combination keys Alt+DownArrow in KeyDown events, but without
any success. Here is the code :
private void myTextBox_KeyDown(object sender, KeyEventArgs e)
{
if(e.KeyCode == Keys.Down && e.Alt)
{
MessageBox.Show("Pressed");
}
}
Thanks.