Possible Duplicate:
KeyDown : recognizing multiple keys
Hi, I would need to differ between two actions: key A is pressed and key A is pressed while CTRL is being pressed. I am doing that:
..keyEventArgs k
if(k.Control)
{
if(k.code==Keys.A)
..
}
else
{
if(k.code==Keys.A)
..
}
Is that correct?