Excel (2K) Menu help

  • Thread starter Thread starter AlanN
  • Start date Start date
A

AlanN

Is it possible to configure a spreadsheet so that when one opens it, a menu item can appear within the regular menu items (File, Edit, View,etc.)?
If the spreadsheet is closed, I would then expect the menu option would disappear.


TIA, AlanN
 
Hi Alan,

Something like

Application.Commandbars("Worksheet Menu Bar").Enabled= False
Application.Commandbars("Formatting").Visible = False
Application.Commandbars("Standard").Visible = False
etc.

in the workbook close event, and the opposite values in the workbook open event.

But why, don't you need these menus in other workbooks?

--

HTH

Bob Phillips
... looking out across Poole Harbour to the Purbecks
(remove nothere from the email address if mailing direct)

Is it possible to configure a spreadsheet so that when one opens it, a menu item can appear within the regular menu items (File, Edit, View,etc.)?
If the spreadsheet is closed, I would then expect the menu option would disappear.


TIA, AlanN
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads


Back
Top