Hi there,
I'm developing an Excel 2003 add-on and trying to make my own menu like so:
Application.ScreenUpdating = true;
Application.MenuBars.Add("MyMenu");
Application.MenuBars["MyMenu"].Menus.Add("MyMenuItem1", null, null);
It seems to run just fine but I can't see my menu at all.
any ideas why?