Hi Dave,

Since many of us have switched to Excel 2007 or above, it would be nice if
you can attach a picture of this bespoke menu, and then try to relate to
what you are expecting in your new version of Excel.

Regards,
Sam Mathai Chacko


On Thu, Sep 19, 2013 at 8:38 PM, Dave Tomlinson <dave.t...@gmail.com> wrote:

>
> I have a number of oldish spreadsheets which (in Excel 2003) had a bespoke
> menu to do most of the work through macros.
>
> In 2013 the "Menu" appears as an Add-in with the subitems expandable
> beneath it.  I woud like to get back to having a bespoke menu but having
> the individual macros a add-ins would be acceptable.  Below is my code for
> creating the menu and sub-items.  Can someone tell me how to change this to
> achieve my end please?
>
> DaveT
> In Sunny South Yorkshire
>
> Sub SetupMenus()
> 'ADD MENUS to the worksheet menu bar.
> 'We also need to attach macros to each of the menu options by using the
> OnAction argument.
>
>    MenuBars(xlWorksheet).Menus.Add Caption:="&" & ClubName, Before:=9
>    MenuBars(xlWorksheet).Menus(ClubName).MenuItems.Add Caption:="New
> &Download", Before:=1, OnAction:="NewDownload"
>    MenuBars(xlWorksheet).Menus(ClubName).MenuItems.Add Caption:="New
> &Month", Before:=1, OnAction:="NewMonth"
>    MenuBars(xlWorksheet).Menus(ClubName).MenuItems.Add Caption:="Member
> &Extract", Before:=1, OnAction:="MemberExtract"
>    MenuBars(xlWorksheet).Menus(ClubName).MenuItems.Add Caption:="New
> &Share", Before:=1, OnAction:="NewShare"
>    MenuBars(xlWorksheet).Menus(ClubName).MenuItems.Add Caption:="&Add to
> Holding", OnAction:="InsertShare"
>    MenuBars(xlWorksheet).Menus(ClubName).MenuItems.Add Caption:="&About
> this Workbook", OnAction:="About"
> '   MenuBars(xlWorksheet).Menus(ClubName).MenuItems.Add Caption:="-",
> Before:="&Print"
> End Sub
>
> --
> Are you =EXP(E:RT) or =NOT(EXP(E:RT)) in Excel? And do you wanna be? It’s
> =TIME(2,DO:IT,N:OW) ! Join official Facebook page of this forum @
> https://www.facebook.com/discussexcel
>
> FORUM RULES
>
> 1) Use concise, accurate thread titles. Poor thread titles, like Please
> Help, Urgent, Need Help, Formula Problem, Code Problem, and Need Advice
> will not get quick attention or may not be answered.
> 2) Don't post a question in the thread of another member.
> 3) Don't post questions regarding breaking or bypassing any security
> measure.
> 4) Acknowledge the responses you receive, good or bad.
> 5) Jobs posting is not allowed.
> 6) Sharing copyrighted material and their links is not allowed.
>
> NOTE : Don't ever post confidential data in a workbook. Forum owners and
> members are not responsible for any loss.
> ---
> You received this message because you are subscribed to the Google Groups
> "MS EXCEL AND VBA MACROS" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to excel-macros+unsubscr...@googlegroups.com.
> To post to this group, send email to excel-macros@googlegroups.com.
> Visit this group at http://groups.google.com/group/excel-macros.
> For more options, visit https://groups.google.com/groups/opt_out.
>



-- 
Sam Mathai Chacko

-- 
Are you =EXP(E:RT) or =NOT(EXP(E:RT)) in Excel? And do you wanna be? It’s 
=TIME(2,DO:IT,N:OW) ! Join official Facebook page of this forum @ 
https://www.facebook.com/discussexcel

FORUM RULES

1) Use concise, accurate thread titles. Poor thread titles, like Please Help, 
Urgent, Need Help, Formula Problem, Code Problem, and Need Advice will not get 
quick attention or may not be answered.
2) Don't post a question in the thread of another member.
3) Don't post questions regarding breaking or bypassing any security measure.
4) Acknowledge the responses you receive, good or bad.
5) Jobs posting is not allowed.
6) Sharing copyrighted material and their links is not allowed.

NOTE  : Don't ever post confidential data in a workbook. Forum owners and 
members are not responsible for any loss.
--- 
You received this message because you are subscribed to the Google Groups "MS 
EXCEL AND VBA MACROS" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to excel-macros+unsubscr...@googlegroups.com.
To post to this group, send email to excel-macros@googlegroups.com.
Visit this group at http://groups.google.com/group/excel-macros.
For more options, visit https://groups.google.com/groups/opt_out.

Reply via email to