Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6047353
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 23, 20262026-05-23T07:20:30+00:00 2026-05-23T07:20:30+00:00

i have a macro (Makro1) that is assigned to a button in a custom

  • 0

i have a macro (Makro1) that is assigned to a button in a custom toolbar (Custom1) with caption “Schutzstatus”. i want the toolbar only to be loaded with this very xls-file.

can someone help me out with the code?

i managed to customize the tooltip:

Application.CommandBars("Custom1").Controls(1).TooltipText = "Abfrage des Schutzstatus der Arten im Zwischenspeicher"

but i fail in creating the whole thing by vba..

thanks in advance,
kay

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-23T07:20:31+00:00Added an answer on May 23, 2026 at 7:20 am

    You don’t actually need to (re)create the whole toolbar on loading your XLS, but you need to display/hide it during certain navigations

    1 create the toolbar

    2 attach it to your XLS (view / toolbars / customize …. / attach)

    3 create event procedures to show/hide your toolbar; unless you want to have a specific behaviour for different sheets, the following should be enough to care for all navigation:

    Private Sub Workbook_Activate()
        ' show toolbar
        Application.CommandBars("CoolBar").Visible = True
        Application.CommandBars("CoolBar").Controls(1).TooltipText = "C'mon squeeze me"
    End Sub
    
    Private Sub Workbook_BeforeClose(Cancel As Boolean)
        ' drop toolbar
        Application.CommandBars("CoolBar").Delete
    End Sub
    
    Private Sub Workbook_Deactivate()
    ' see if we have a toolbar (it might have been already deleted by "Workbook_BeforeClose"
    ' if yes - hide it
    Dim Idx As Integer
    
        For Idx = 1 To Application.CommandBars.Count
            If Application.CommandBars(Idx).Name = "CoolBar" Then
                Application.CommandBars("CoolBar").Visible = False
            End If
        Next Idx
    End Sub
    
    Private Sub Workbook_SheetActivate(ByVal Sh As Object)
    ' display toolbar
        Application.CommandBars("CoolBar").Visible = True
    End Sub
    
    Private Sub Workbook_SheetDeactivate(ByVal Sh As Object)
        Application.CommandBars("CoolBar").Visible = False
    End Sub
    

    Place all in the “ThisWorkbook” object – so they fire on all sheets.

    4 After saving the toolbar with the XLS and testing, close the XLS – the toolbar will be still present in your application object – and delete the toolbar from there. Don’t panic, it’s coming back when you re-open your XLS file.

    Hope this helps
    Tschüss MikeD

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I want to have a macro dbtest that can be used like this: (dbtest
I have a macro that looks like this: #define coutError if (VERBOSITY_SETTING >= VERBOSITY_ERROR)
I have an access macro, that I want to run automatically from a batch
I have this macro: #define kPaxZoneW 105.0 I want to define a subsequent macro
We have a macro for error-checking that goes like this: #define CheckCondition( x )
I have a macro that I wrote to just help me with my unit
I have a macro definition in header file like this: // header.h ARRAY_SZ(a) =
I have a 'foreach' macro I use frequently in C++ that works for most
I have the following Macro I want to call from within an AutoHotkey script
I have seen this macro defined before but never really knew its purpose. Can

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.