Customizations to menus and toolbars are saved in your Excelxx.xlb file, not
with the workbook.
You can create the menu and the button when the workbook opens using code.
See Debra Dalgleish's site for more on this.
http://www.contextures.on.ca/xlToolbar02.html
Gord Dibben MS Excel MVP
On Tue, 14 Aug 2007 16:56:02 -0700, jfitzpat
<(E-Mail Removed)> wrote:
>I have a custom button that runs the macro at the bottom of this msg.
>I saved this custom button on a Custom Menu which I saved in my worksheet.
>When I reopen the locked spreadsheet, the custom button and toolbar show up
>fine for me. When I email the file to others and they open it, they can see
>the toolbar but the button is gone. They can run the macro manually. Can
>someone tell me why the button disappears and how I can save this toolbar and
>button only within this one spreadsheet? thx....
>
>Sub Spell_Check()
> ActiveSheet.Unprotect Password:="pmo"
> Cells.CheckSpelling "SRdictionary.dic", SpellLang:=1033
> ActiveSheet.Protect Password:="pmo", DrawingObjects:=True, _
> Contents:=True, Scenarios:=True
>End Sub
>
>
>
>