I have the following code in an attempt to capture the DEL key.
I can trap the HOME, PAGEUP and PAGEDOWN keys but the DEL key does nothing.Code:private void desktopThumbs_KeyDown(object sender, KeyEventArgs e)
{
if (e.KeyCode == Keys.Delete)
{
MessageBox.Show("DELETE HIT - KeyDown");
}
}
However if I hit SHIFT & DEL it does get caught.
Any Ideas whats happening. I don't understand why I have to hit shift.
Thanks In Advance:)
