I have a TextBox control in a MDI child form. The top level Form1 has menus and one of the menu items has Ctrl-Z assigned as a short cut.
My TextBox has ShortcutsEnabled set to true. When it is in focus and I type something and then I press Ctrl-Z, instead of undoing what I have typed in the TextBox, the Form1 Ctrl-Z menu item gets activated. Q: What did I do worng?
However, Ctrl-X, Ctrl-C,and Ctrl-V, which Form1 does not use, works fine as expected. Ctrl-A, which Form1 also does not use, produces a ding sound and nothing happens.
Thanks.
PS: The MSDN documentation for TextBoxBase.ShortcutsEnabled property has this cryptic note: "The TextBox control does not support shortcut keys."