View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.programming
Jim Thomlinson[_3_] Jim Thomlinson[_3_] is offline
external usenet poster
 
Posts: 983
Default How to save a menu bar

This is best accomplished with an Addin... In the addin include coee simlar
to this in ThisWorkbook

Private Sub Workbook_AddinInstall()
AddMyMenu
End Sub

Private Sub Workbook_AddinUninstall()
DeleteMyMenu

End Sub

I know that your code has been improving by leaps and bounds so I will not
go into the whole addin thing unless you want help... Best of Luck

HTH

"filo666" wrote:

Hi, I made a menu bar, I want to save my customized menu bar in a disk an
copy to another computer, how???

The menu could be copied when I copy a file???