I have a TextBox's KeyDown event that start a timer when it is called. I also have a Paste MenuStripItem and I set the ShorcutKeys property in Design View to Ctrl + V.
I notice that when user press the shortcut keys (Ctrl + V), the KeyDown event will not be called. And when I set the ShortcutKeys property to None, KeyDown is normally called. Is there a way to fire both event when I press the Ctrl + V?
I has tried with other MenuStripItem and the result are the same.
EDIT: Thank you very much, @Hans. When I move my code from KeyDown event to ProcessCmdKey, it works really well. (So I suppose the ProcessCmdKey is the method which is called everytime a key is pressed nomatter what it is). Because you deleted your previous anwser so I can't mark it as answer now.