Hello Jason,
Lookup the "Keybindings" object in Help. The example below is adapted from
that and seems to works ok.
Best regards
John
Sub Key()
'This example assigns the CTRL+SHIFT+B key
'combination to another procedure command
KeyBindings.Add KeyCode:=BuildKeyCode(wdKeyControl, _
wdKeyShift, wdKeyB), KeyCategory:=wdKeyCategoryCommand, _
Command:="MyFoundProcedure"
End Sub
Sub MyFoundProcedure()
MsgBox ("Found")
End Sub