D dmsy Feb 9, 2005 #1 I tried using the Keys enumeration: (Shortcut)(Keys.Control | Keys.Tab) but it does not work.
H Herfried K. Wagner [MVP] Feb 9, 2005 #2 I tried using the Keys enumeration: (Shortcut)(Keys.Control | Keys.Tab) but it does not work. Click to expand... ACK. This key combination is not supported as menu shortcut.
I tried using the Keys enumeration: (Shortcut)(Keys.Control | Keys.Tab) but it does not work. Click to expand... ACK. This key combination is not supported as menu shortcut.
D dmsy Feb 9, 2005 #3 MenuItem support the Shortcut enumeration, but Ctrl + Page Up is not supported in the Shortcut enumeration and I was able to use (Shortcut)(Keys.Control | Keys.PageUp). It was able to intercept those message, just not Ctrl+Tab.
MenuItem support the Shortcut enumeration, but Ctrl + Page Up is not supported in the Shortcut enumeration and I was able to use (Shortcut)(Keys.Control | Keys.PageUp). It was able to intercept those message, just not Ctrl+Tab.