Menu Editor

  • Thread starter Thread starter Billy Leung
  • Start date Start date
B

Billy Leung

Hi,

In the old version Excel (Excel 5.0 -- yes, my company still using Windows
3.1 which is an antique), there was a tool "Menu Editor". This can change
the menu only for the specific excel file with specific macro. In other
words, each excel file can have its own menu. I can't find this tool in the
new version Excel. Would somebody tell me where it is ?

Thanks.


Billy
 
It's been gone for many versions now. AIR, it was removed in Excel 97.
 
Do you mean the Toolbars?

If so............


Right Click anywhere on the toolbars and choose "Customise"

or

View > ToolBars > Customise

Celtic_Avenger
:) :) :) :) :
 
Celtic Avenger

No, I am referring to the pull down menu. In the old version, I even can
remove "File" menu !

By the way, I already cross post as per other people suggested in the
newsgroup, not multi-post. Am I doing the right thing ?

Billy
 
Since 97 there have been what MS call Commandbars. These refer to the menus
and the toolbars. Programmatically, it is relatively simple to manipulate
the menus via the Application.Commandbars.

If you give an example of what you want to do, we can show you some code.

--

HTH

RP

Billy Leung said:
Celtic Avenger

No, I am referring to the pull down menu. In the old version, I even can
remove "File" menu !

By the way, I already cross post as per other people suggested in the
newsgroup, not multi-post. Am I doing the right thing ?

Billy
 
Hi Billy,

My filters stop attachments.

It would help if you just told me what menus you add, sub-menus etc., what
macros they invoke. Oh, and which menus do you hide?
 
Anther method to think of might be to remove all toolbars using

Application.DisplayFormulaBar = False
Application.CommandBars("Standard").Visible = False
Application.CommandBars("Formatting").Visible = False

and others,

Then use the full screen option, and use then create a user form as
navigation and functionality menu.

Celtic_Avenger
 
Billy

In addition to the other advice and suggestions you received........

If you still have workbooks with menus created using the Menu Editor, you may
have problems with ghost menu items when you open these in a newer version.

To get rid of the custom menus, download Jim Rech's REMOVEMENUS.ZIP file from
Stephen Bullen's site. See instructions and d/l file from:

http://www.bmsltd.ie/MVP/Default.htm

Gord Dibben Excel MVP
 
Hi all,

Thanks a million for your info. I will try your advices one by one (It takes
time.) For other alternative, please refer to microsoft.public.excel and
microsoft.public.excel.programming in same
subject.

Billy

*********************************************************************


Gord Dibben said:
Billy

In addition to the other advice and suggestions you received........

If you still have workbooks with menus created using the Menu Editor, you may
have problems with ghost menu items when you open these in a newer version.

To get rid of the custom menus, download Jim Rech's REMOVEMENUS.ZIP file from
Stephen Bullen's site. See instructions and d/l file from:

http://www.bmsltd.ie/MVP/Default.htm

Gord Dibben Excel MVP
 

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

Back
Top