ACC97: Only One Menu Bar Can Be Visible at a Time Using Code

Last reviewed: January 30, 1998
Article ID: Q167663
The information in this article applies to:
  • Microsoft Access 97

SYMPTOMS

Moderate: Requires basic macro, coding, and interoperability skills.

When you create a new menu bar in Visual Basic for Applications code, or when you set the Visible property of an existing menu bar to True, the current menu bar disappears. However, if you create a new menu bar or view an existing menu bar by pointing to Toolbars on the View menu, and then clicking Customize, the current menu bar remains visible along with the new one.

This article assumes that you are familiar with Visual Basic for Applications and with creating Microsoft Access applications using the programming tools provided with Microsoft Access. For more information about Visual Basic for Applications, please refer to the "Building Applications with Microsoft Access 97" manual.

RESOLUTION

You can set the Visible property of any existing menu bar in code to make it visible, but this method only allows you to display one menu bar at a time. When you set the Visible property of any menu bar to True, Microsoft Access automatically sets the Visible property of all other menu bars to False.

For example, assume your database contains two menu bars: MenuBar1 and MenuBar2. If MenuBar1 is displayed on your screen, the following line of code automatically sets the Visible property of MenuBar1 to False:

   CommandBars("MenuBar2").Visible = True

If MenuBar2 is displayed on your screen, the following line of code automatically sets the Visible property of MenuBar2 to False:

   CommandBars("MenuBar1").Visible = True

In order to display more than one menu bar at a time, you must create your new menu bar or view an existing one through the user interface as follows:

  1. On the View menu, point to toolbars, and then click Customize.

  2. In the Customize dialog box, select an existing menu bar, or click New to create a new one.

STATUS

This behavior is by design.

MORE INFORMATION

Steps to Reproduce Behavior

  1. Start Microsoft Access and open the sample database Northwind.mdb.

  2. Create a new module.

  3. On the Tools menu, click References.

  4. In the References dialog box, select Microsoft Office 8.0 Object Library, and then click OK. If that reference is not listed in the Available References box, click the Browse button and search for the file, Mso97.dll.

  5. Type the following line in the Declarations section of your module:

          Public strCurrentMenuName As String
    

  6. Type the following procedure:

          '*******************************************************************
          ' This procedure creates a new menu bar and makes it visible.
          '*******************************************************************
    
          Sub CreateMenuBar(strNewMenuName as String)
          Dim cmdNewMenu As CommandBar
    
          ' Set Global strCurrentMenuName to existing menu for use later when
          ' toggling.
          strCurrentMenuName = CommandBars.ActiveMenuBar.Name
    
          ' Create a new menu bar.
          Set cmdNewMenu = Application.CommandBars.Add(strNewMenuName, _
             msoBarFloating, True, False)
          With cmdNewMenu
            ' Set Protection property to no protection so users can customize
            ' it.
            .Protection = msoBarNoProtection
            ' Show new menu.
            .Visible = True
          End With
          End Sub
    
    

  7. To test this function, type the following line in the Debug window, and then press ENTER:

          CreateMenuBar "ExampleMenu"
    

    A new floating menu bar is displayed on the screen, and the original menu bar is hidden from view.

    NOTE: All command bars require a unique name. If you use the name of an existing command bar in the strNewMenuName argument of this procedure, you receive the following error message:

          Run-time error '5':
          Invalid procedure call or argument
    

  8. To restore the original menu bar to the screen, type the following line in the Debug window, and then press ENTER:

          CommandBars(strCurrentMenuName).Visible = True
    

    Note that the original menu bar reappears, and your custom menu bar disappears.

REFERENCES

For more information about menu bars, search the Help Index for "menu bars," or ask the Microsoft Access 97 Office Assistant.

For more information about the Protection property of command bars, search the Help Index for "Protection property."

For more information about creating command bars in code, please see the following article in the Microsoft Knowledge Base:

   ARTICLE-ID: Q159692
   TITLE     : ACC97: How to Create Command Bars Using Visual Basic Code

For more information on how to programmatically add and remove items on command bars, please see the following article(s) in the Microsoft Knowledge Base:

   ARTICLE-ID: Q172300
   TITLE     : ACC97: Command Bar Wizard Available on MSL


Additional query words: Cmdbar menubar commandbar display show hide
invisible disappear appear
Keywords : kbui PgmObj UifMenub
Version : 97
Platform : WINDOWS
Hardware : x86
Issue type : kbprb
Solution Type : Info_Provided


THE INFORMATION PROVIDED IN THE MICROSOFT KNOWLEDGE BASE IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND. MICROSOFT DISCLAIMS ALL WARRANTIES, EITHER EXPRESS OR IMPLIED, INCLUDING THE WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. IN NO EVENT SHALL MICROSOFT CORPORATION OR ITS SUPPLIERS BE LIABLE FOR ANY DAMAGES WHATSOEVER INCLUDING DIRECT, INDIRECT, INCIDENTAL, CONSEQUENTIAL, LOSS OF BUSINESS PROFITS OR SPECIAL DAMAGES, EVEN IF MICROSOFT CORPORATION OR ITS SUPPLIERS HAVE BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. SOME STATES DO NOT ALLOW THE EXCLUSION OR LIMITATION OF LIABILITY FOR CONSEQUENTIAL OR INCIDENTAL DAMAGES SO THE FOREGOING LIMITATION MAY NOT APPLY.

Last reviewed: January 30, 1998
© 1998 Microsoft Corporation. All rights reserved. Terms of Use.