J
jonpb
The ProcessDialogKeys function is not entered when the Shift key is
being pressed. For instance I cannot do something like this:
switch (keyData)
{
case Keys.Space:
if ((Control.ModifierKeys & Keys.Shift) == Keys.Shift)
// Do something
else
// Do something else
}
Is there some kind work around for this. I want this action to be
performed no matter which control has focus.
Thanks
being pressed. For instance I cannot do something like this:
switch (keyData)
{
case Keys.Space:
if ((Control.ModifierKeys & Keys.Shift) == Keys.Shift)
// Do something
else
// Do something else
}
Is there some kind work around for this. I want this action to be
performed no matter which control has focus.
Thanks