View Single Post
  #3   Report Post  
Posted to microsoft.public.excel.programming
GS GS is offline
external usenet poster
 
Posts: 364
Default Getting rid of command bar chevrons that allow "customize" menu (E

Hi Travich,

Would this work for you?

Application.CommandBars.DisableCustomize=True

This affects all commandbars in the collection. You should remember to set
it to False when your project closes.

HTH
Garry