Prevent KeyDown event from procesing to next form - Stack Overflow most recent 30 from stackoverflow.com 2009-12-18T04:32:12Z http://stackoverflow.com/feeds/question/1012517 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1012517/prevent-keydown-event-from-procesing-to-next-form 0 Prevent KeyDown event from procesing to next form Johan 2009-06-18T13:02:30Z 2009-06-18T14:41:20Z <p>HI, I have a form in C# app. On this form I capture a KeyDown event Alt+U which will open a second form. In the second form I have a toolStripButton with shortcutkey Alt+U (the same which I used to open the form with) which prints a document. Now, my problem is when I open the second form It will automatically trigger the event of clicking toolstripbutton since it has the same shortcutkey as I used to open the form with. How can I prevent this from happen.</p> <p>Regards Johan</p> http://stackoverflow.com/questions/1012517/prevent-keydown-event-from-procesing-to-next-form/1012558#1012558 0 Answer by BFree for Prevent KeyDown event from procesing to next form BFree 2009-06-18T13:11:34Z 2009-06-18T13:11:34Z <p>This doesn't answer your question, but you really should think about making two different shortcut keys for these two very different actions. Having two identical shortcut keys that do two entirely different actions is very confusing IMO.</p> <p>To answer your question though, I would have some property on the second form like "ShouldRaise" or something, and only raise the Alt + U event in the second form if that flag is true. Set it to false initially, but then in the KeyUp in the first form, set it to true.</p> http://stackoverflow.com/questions/1012517/prevent-keydown-event-from-procesing-to-next-form/1012909#1012909 0 Answer by James for Prevent KeyDown event from procesing to next form James 2009-06-18T14:19:07Z 2009-06-18T14:19:07Z <p>Would it not just be easier to change the shortcut of one to something else? I agree with BFree its not the best design have the same shortcut for 2 completely different functions. All shortcuts/accelerator keys should be unique.</p> <p>Why not change the shortcut for the form page changing to something like:</p> <p>Ctrl+Right (Go to next page) Ctrl+Left (Go to previous page)</p> http://stackoverflow.com/questions/1012517/prevent-keydown-event-from-procesing-to-next-form/1013016#1013016 0 Answer by tzup for Prevent KeyDown event from procesing to next form tzup 2009-06-18T14:38:28Z 2009-06-18T14:38:28Z <p>On the second form do you actually have a ToolStripMenuItem instead? (a ToolStripButton doesn't have the ShortcutKeys property).</p> <p>Do you instantiate a new form when the user presses Alt-U on the parent form? </p> <p>Did you check the sender object on the handler that prints the document to see if it was the parent form? </p> <p>Can't seem to reproduce your problem; a little explaining would help.</p> http://stackoverflow.com/questions/1012517/prevent-keydown-event-from-procesing-to-next-form/1013038#1013038 0 Answer by Mark for Prevent KeyDown event from procesing to next form Mark 2009-06-18T14:41:20Z 2009-06-18T14:41:20Z <p>Another easy solution is to do some check of what form you are in from the event listener. You could just return inside the event handler inside your second form.</p> <p>Again not the most elegant solution but should be a decent fix.</p>