I'm struggling to think of anything that would cause that, bit of a longshot but maybe (if there is one) the control for ctrl+shift+enter has been assigned a custom action via vba...
Running this macro should reset any .onaction property of the ctrl+shift+enter command if one exists
Sub macro_1()
Dim count, myCtrl, myItem
On Error Resume Next
For count = 1 To 11000
Set myCtrl = CommandBars.FindControls(ID:=count)
If Not myCtrl Is Nothing Then
For Each myItem In myCtrl
myItem.OnAction = ""
Next
End If
Next count
On Error GoTo 0
End Sub
Bookmarks