+ Reply to Thread
Results 1 to 6 of 6

Hide unhide custom toolbar (title change)

Hybrid View

Rick_Stanich Hide unhide custom toolbar... 11-30-2010, 05:35 PM
romperstomper Re: Grey out custom toolbar 11-30-2010, 05:54 PM
Rick_Stanich Re: Grey out custom toolbar 12-01-2010, 03:46 PM
Rick_Stanich Re: Grey out custom toolbar 12-02-2010, 04:14 PM
romperstomper Re: Hide unhide custom... 12-02-2010, 04:45 PM
Rick_Stanich Re: Hide unhide custom... 12-02-2010, 04:50 PM
  1. #1
    Forum Contributor Rick_Stanich's Avatar
    Join Date
    11-21-2005
    Location
    Ladson SC
    MS-Off Ver
    Office365
    Posts
    1,177

    Hide unhide custom toolbar (title change)

    How do you make a custom tool bar inactive when no workbooks are open?
    Greyed out, but some what visible?

    Possibly cross referenced to this post of mine.
    http://www.excelforum.com/excel-prog...is-active.html
    Last edited by Rick_Stanich; 12-02-2010 at 04:16 PM.
    Regards

    Rick
    Win10, Office 365

  2. #2
    Forum Expert romperstomper's Avatar
    Join Date
    08-13-2008
    Location
    England
    MS-Off Ver
    365, varying versions/builds
    Posts
    21,980

    Re: Grey out custom toolbar

    You'd have to disable all its controls
    Everyone who confuses correlation and causation ends up dead.

  3. #3
    Forum Contributor Rick_Stanich's Avatar
    Join Date
    11-21-2005
    Location
    Ladson SC
    MS-Off Ver
    Office365
    Posts
    1,177

    Re: Grey out custom toolbar

    oops, wrong post.

  4. #4
    Forum Contributor Rick_Stanich's Avatar
    Join Date
    11-21-2005
    Location
    Ladson SC
    MS-Off Ver
    Office365
    Posts
    1,177

    Re: Grey out custom toolbar

    Im stuck at a point on how to make my code work when any workbook opens or closes.

    Do I have to place code in every workbook?

    what I have now.
        On Error Resume Next
        With Application
            If Workbooks.Count > "1" Then
                'MsgBox Workbooks.Count 'for testing
                If Left(ActiveWorkbook.Name, 6) = "AS9102" Or _
                   Left(ActiveWorkbook.Name, 3) = "MOT" Or _
                   Left(ActiveWorkbook.Name, 4) = "Conv" Then
                    .CommandBars("Custom Menu").Visible = True
                Else
                    .CommandBars("Custom Menu").Visible = False
                End If
            End If
        End With
        On Error GoTo 0
    The above is only affective when I start Excel (personal.xls), part of the tool bar creation macro.
    What can I do when I close and or open other workbooks to make the toolbar visible or invisible?

  5. #5
    Forum Expert romperstomper's Avatar
    Join Date
    08-13-2008
    Location
    England
    MS-Off Ver
    365, varying versions/builds
    Posts
    21,980

    Re: Hide unhide custom toolbar (title change)

    You have two options I can think of:
    1. Declare an Application variable WithEvents and use that to trap the opening and closing of other workbooks.
    2. Use built-in menu items on your toolbar that already behave the way you want, and hook their click events to run your code. That way, the disabling and enabling is done for you.

  6. #6
    Forum Contributor Rick_Stanich's Avatar
    Join Date
    11-21-2005
    Location
    Ladson SC
    MS-Off Ver
    Office365
    Posts
    1,177

    Re: Hide unhide custom toolbar (title change)

    Option 1, What? LOL
    Option 2, I think I can do that.
    Thank you.

+ 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