View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.programming
Norman Jones Norman Jones is offline
external usenet poster
 
Posts: 5,302
Default Excel Popup Menu Control

Hi James,

Try:

'===========
Public Sub Tester
Application.CommandBars("Worksheet Menu Bar").Reset
End Sub
'<<===========


---
Regards,
Norman


"James" wrote in message
...
I am trying to program a custom menu for an Excel application, and so far I
have managed to move the File menu to the end of the list and have
multiple
File menus with only three having the MenuItems in them.
How do I rearrange the menu order and remove the unwanted File menus?

James