+ Reply to Thread
Results 1 to 5 of 5

Getting a hook on Toolbar Events

Hybrid View

  1. #1
    WhytheQ
    Guest

    Getting a hook on Toolbar Events

    How could I trap toolbar events: I'd like a boolean variable to change
    when a custom toolbar has been made invisible i.e it is a floating
    custom toolbar and I'd like a boolean variable to change when the user
    hits the cross to make the bar invisible.

    Is a class module the only answer?

    Regards
    Jason.


  2. #2
    Ardus Petus
    Guest

    Re: Getting a hook on Toolbar Events

    bVisible = commandbars("My Command Bar").visible

    HTH
    --
    AP

    "WhytheQ" <WhytheQ@gmail.com> a écrit dans le message de news:
    1149778166.191057.319670@g10g2000cwb.googlegroups.com...
    > How could I trap toolbar events: I'd like a boolean variable to change
    > when a custom toolbar has been made invisible i.e it is a floating
    > custom toolbar and I'd like a boolean variable to change when the user
    > hits the cross to make the bar invisible.
    >
    > Is a class module the only answer?
    >
    > Regards
    > Jason.
    >




  3. #3
    Jim Thomlinson
    Guest

    RE: Getting a hook on Toolbar Events

    There is no event that fires when the visible property of a command bar is
    changed so I am affraid you are out of luck on this one.
    --
    HTH...

    Jim Thomlinson


    "WhytheQ" wrote:

    > How could I trap toolbar events: I'd like a boolean variable to change
    > when a custom toolbar has been made invisible i.e it is a floating
    > custom toolbar and I'd like a boolean variable to change when the user
    > hits the cross to make the bar invisible.
    >
    > Is a class module the only answer?
    >
    > Regards
    > Jason.
    >
    >


  4. #4
    keepITcool
    Guest

    Re: Getting a hook on Toolbar Events


    You dont need events or hooks.
    Simply use protection for your bar (see VBA help for details):

    Sub ObstinateBar()
    On Error Resume Next
    CommandBars("Test").Delete
    On Error GoTo 0

    With CommandBars.Add("Test", msoBarFloating, , True)
    With .Controls.Add(msoControlButton, , , , True)
    .Caption = "Button"
    .FaceId = 59
    .OnAction = " BtnHandler"
    End With
    .Visible = True
    .Protection = msoBarNoChangeDock + _
    msoBarNoChangeVisible + _
    msoBarNoCustomize
    End With

    'OfficeXP has a few more options
    'Following code will compile and work in versions 97-2003
    #If VBA6 Then
    If Val(Application.Version) > 10 Then
    CallByName CommandBars, "DisableAskAQuestionDropdown", VbLet, True
    CallByName CommandBars, "DisableCustomize", VbLet, True
    End If
    #End If

    End Sub


    --
    keepITcool
    | www.XLsupport.com | keepITcool chello nl | amsterdam


    WhytheQ wrote in
    <news:<1149778166.191057.319670@g10g2000cwb.googlegroups.com>

    > How could I trap toolbar events: I'd like a boolean variable to change
    > when a custom toolbar has been made invisible i.e it is a floating
    > custom toolbar and I'd like a boolean variable to change when the user
    > hits the cross to make the bar invisible.
    >
    > Is a class module the only answer?
    >
    > Regards
    > Jason.


  5. #5
    WhytheQ
    Guest

    Re: Getting a hook on Toolbar Events

    as per usual where others give up, KeepItCool comes up with the goods:
    Thanks!
    J


    keepITcool wrote:
    > You dont need events or hooks.
    > Simply use protection for your bar (see VBA help for details):
    >
    > Sub ObstinateBar()
    > On Error Resume Next
    > CommandBars("Test").Delete
    > On Error GoTo 0
    >
    > With CommandBars.Add("Test", msoBarFloating, , True)
    > With .Controls.Add(msoControlButton, , , , True)
    > .Caption = "Button"
    > .FaceId = 59
    > .OnAction = " BtnHandler"
    > End With
    > .Visible = True
    > .Protection = msoBarNoChangeDock + _
    > msoBarNoChangeVisible + _
    > msoBarNoCustomize
    > End With
    >
    > 'OfficeXP has a few more options
    > 'Following code will compile and work in versions 97-2003
    > #If VBA6 Then
    > If Val(Application.Version) > 10 Then
    > CallByName CommandBars, "DisableAskAQuestionDropdown", VbLet, True
    > CallByName CommandBars, "DisableCustomize", VbLet, True
    > End If
    > #End If
    >
    > End Sub
    >
    >
    > --
    > keepITcool
    > | www.XLsupport.com | keepITcool chello nl | amsterdam
    >
    >
    > WhytheQ wrote in
    > <news:<1149778166.191057.319670@g10g2000cwb.googlegroups.com>
    >
    > > How could I trap toolbar events: I'd like a boolean variable to change
    > > when a custom toolbar has been made invisible i.e it is a floating
    > > custom toolbar and I'd like a boolean variable to change when the user
    > > hits the cross to make the bar invisible.
    > >
    > > Is a class module the only answer?
    > >
    > > Regards
    > > Jason.



+ 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