J
Jay
The macro code,
For Each menu In ContextMenu.WordMenus
Set cb = Application.CommandBars(menu)
For Each ctl In cb.Controls
If ctl.Tag = "" Then
ctl.Delete
End If
Next ctl
Next menu
deleted all the right-click pop-up menu options(cut, copy, paste...).
How to recover the MSWord2000 right-click pop-up menu, disabled through the macro?
For Each menu In ContextMenu.WordMenus
Set cb = Application.CommandBars(menu)
For Each ctl In cb.Controls
If ctl.Tag = "" Then
ctl.Delete
End If
Next ctl
Next menu
deleted all the right-click pop-up menu options(cut, copy, paste...).
How to recover the MSWord2000 right-click pop-up menu, disabled through the macro?