How to disable shortcut keys in VBA
You can disable the keybinding using the following code
Sub VBA_Sys()
' Disable Ctrl + S
FindKey(BuildKeyCode(wdKeyControl, wdKeyS)).Disable
' Rebind Ctrl + S to FileSave
FindKey(BuildKeyCode(wdKeyControl, wdKeyS)).Rebind wdKeyCategoryCommand, "FileSave"
End Sub
The above code disables Ctrl +