How do I use Ctrl + Tab as one of the shortcuts in my menu item

  • Thread starter Thread starter dmsy
  • Start date Start date
D

dmsy

I tried using the Keys enumeration:

(Shortcut)(Keys.Control | Keys.Tab)

but it does not work.
 
I tried using the Keys enumeration:

(Shortcut)(Keys.Control | Keys.Tab)

but it does not work.

ACK. This key combination is not supported as menu shortcut.
 
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.
 
Back
Top