I would like to run a applicationwide hotkey which enables the user to execute a specific command (eg maximizing all mdi forms) pressing alt-enter
When using this code it works:
When using this code it works:
ChordModifier1.AltModifier =
True
ChordModifier1.ControlModifier =
False
ChordModifier1.ShiftModifier =
False
Chord1.ChordModifier = ChordModifier1
Chord1.Keys =
"Alt+Y"
InputBinding1.Chord = Chord1
ClickCommand1.Name = "ActionCommand"
ClickCommand1.OwnerType =
GetType(Telerik.WinControls.RadItem)
InputBinding1.Command = ClickCommand1
InputBinding1.CommandContext =
Me.rbeWindowsMaximize
However when I use
Chord1.Keys = "Alt+Enter"
it does not work. How can I get Alt-Enter to work?
thnx
Walther