On a foreign language version of Word like french the following code line fails since File, Send To, etc does not exist on a French version.
ThisDocument.CommandBars(“File”).Controls(“Send To”).Controls(“Mail Recipient”).Enabled = False
I tried using the ID for those menu items but this produces another error. I am assuming I do not know how to correctly use those menu IDs for accessing menu and tool bar items so as to enable and disable.
ThisDocument.CommandBars(Id:=30002).Controls(Id:=30095).Controls(Id:=3738).Enabled = False