I think it is not possible but I not looked very good at it
Protect the workbook and it is not possible to insert new sheets (ReviewProtect workbook)
For example Shift F11 will also insert a sheet so you must also disable this shortcut,
protecting the workbook is easier.
--
Regards Ron de Bruin
http://www.rondebruin.nl/tips.htm
"Sandy" wrote in message ...
Thanks Ron
Perfect - can I ask another.........
I notice there is a 'new sheet' tab in 2007 - don't suppose you know how to
hide that or at least disable it?
Sandy
"Ron de Bruin" wrote in message
...
See this page Sandy
http://www.rondebruin.nl/ribbon.htm
See the xml examples (2)
.DisplayFormulaBar = False
This is the same in 2007
--
Regards Ron de Bruin
http://www.rondebruin.nl/tips.htm
"Sandy" wrote in message
...
How can I convert the following to hide the menus and ribbon in Excel
2007?
**********
Dim Wksht As Worksheet
With Application
.DisplayFormulaBar = False
.CommandBars("Worksheet Menu Bar").Enabled = False
.CommandBars("Standard").Visible = False
.CommandBars("Formatting").Visible = False
.CommandBars("Drawing").Visible = False
End With
**********
Thanks
Sandy