+ Reply to Thread
Results 1 to 3 of 3

John Walkenbach's Custom Menus

Hybrid View

  1. #1
    Steve
    Guest

    John Walkenbach's Custom Menus

    I have built a custom menu using John Walkenbach's MenuMaker routine located
    at:
    http://j-walk.com/ss/excel/tips/tip53.htm

    What I would like is the capability to add a check mark (toggle on/off) like
    is the case on the standard Excel menu for "View / Toolbars / Standard". Is
    this a FaceID parameter? Any advice would be greatly appreciated.


  2. #2
    Bob Phillips
    Guest

    Re: John Walkenbach's Custom Menus

    The property in question is the state property.

    This is an example of a macro assigned to a commandbar that would do this
    With Application.CommandBars.Action*Control
    If .State = msoButtonUp Then
    ActiveWorkbook.Worksheets(.Cap*tion).Visible = xlSheetHidden
    .State = msoButtonDown
    Else
    ActiveWorkbook.Worksheets(.Cap*tion).Visible = xlSheetVisible
    .State = msoButtonUp
    End If
    End With

    You would need to add another column to the menu table with the initial
    state, and then you have to toggle it within other code using code like that
    shown above.

    --
    HTH


    Bob Phillips

    (replace somewhere in email address with gmail if mailing direct)

    "Steve" <Steve@discussions.microsoft.com> wrote in message
    news:1A14677F-EF7D-467D-93A4-BAA26A7EDBC0@microsoft.com...
    > I have built a custom menu using John Walkenbach's MenuMaker routine

    located
    > at:
    > http://j-walk.com/ss/excel/tips/tip53.htm
    >
    > What I would like is the capability to add a check mark (toggle on/off)

    like
    > is the case on the standard Excel menu for "View / Toolbars / Standard".

    Is
    > this a FaceID parameter? Any advice would be greatly appreciated.
    >




  3. #3
    Steve
    Guest

    Re: John Walkenbach's Custom Menus

    Thanks Bob. Worked Great!!

    "Bob Phillips" wrote:

    > The property in question is the state property.
    >
    > This is an example of a macro assigned to a commandbar that would do this
    > With Application.CommandBars.ActionÂ*Control
    > If .State = msoButtonUp Then
    > ActiveWorkbook.Worksheets(.CapÂ*tion).Visible = xlSheetHidden
    > .State = msoButtonDown
    > Else
    > ActiveWorkbook.Worksheets(.CapÂ*tion).Visible = xlSheetVisible
    > .State = msoButtonUp
    > End If
    > End With
    >
    > You would need to add another column to the menu table with the initial
    > state, and then you have to toggle it within other code using code like that
    > shown above.
    >
    > --
    > HTH
    >
    >
    > Bob Phillips
    >
    > (replace somewhere in email address with gmail if mailing direct)
    >
    > "Steve" <Steve@discussions.microsoft.com> wrote in message
    > news:1A14677F-EF7D-467D-93A4-BAA26A7EDBC0@microsoft.com...
    > > I have built a custom menu using John Walkenbach's MenuMaker routine

    > located
    > > at:
    > > http://j-walk.com/ss/excel/tips/tip53.htm
    > >
    > > What I would like is the capability to add a check mark (toggle on/off)

    > like
    > > is the case on the standard Excel menu for "View / Toolbars / Standard".

    > Is
    > > this a FaceID parameter? Any advice would be greatly appreciated.
    > >

    >
    >
    >


+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1