Hide "Save" and "Save as..." menu

R

Rui Alvares

Hi!

I would like to know if is possible to hide the "Save" and "Save as..."
option menus in the "File" menu and how do that.

Thank in advance.

Rui
 
B

Bob Phillips

application.CommandBars(1).Controls("File").controls("Save").visible=false

application.CommandBars(1).Controls("File").controls("Save
As...").visible=false

--

HTH

Bob Phillips

(remove nothere from the email address if mailing direct)
 
Top