The following macro deletes the Save (Id = 3) and SaveAs (Id = 748) menu
items from the File menu. After deleting them, you can add your own Save and
SaveAs menu items to the File menu.
---
Sub DeleteSaveAndSaveAsMenuItem()
Dim FileMenu As CommandBarPopup
Dim CBC As CommandBarControl
Set FileMenu = CommandBars.FindControl(Id:=30002)
For Each CBC In FileMenu.Controls
With CBC
If (.Id = 3) Or (.Id = 748) Then
.Delete
End If
End With
Next
End Sub
---
- Chirag
PowerShow - View multiple PowerPoint slide shows simultaneously
http://officeone.mvps.org/powershow/powershow.html