The information in this article applies to:
SUMMARY
In Microsoft Excel version 5.0, you can use the MenuBars method in a Visual
Basic for Applications macro to display different menu bars in Microsoft
Excel. In Microsoft Excel 98 Macintosh Edition, the MenuBars method is
replaced by the CommandBars method.
MORE INFORMATIONMicrosoft provides programming examples for illustration only, without warranty either expressed or implied, including, but not limited to, the implied warranties of merchantability and/or fitness for a particular purpose. This article assumes that you are familiar with the programming language being demonstrated and the tools used to create and debug procedures. Microsoft support professionals can help explain the functionality of a particular procedure, but they will not modify these examples to provide added functionality or construct procedures to meet your specific needs. If you have limited programming experience, you may want to contact the Microsoft fee-based consulting line at (800) 936-5200. For more information about the support options available from Microsoft, please see the following page on the World Wide Web: http://www.microsoft.com/support/supportnet/overview/overview.asp Microsoft Excel 98 Macintosh EditionIn Microsoft Excel 98, menu bars are replaced with command bars. Note that some Microsoft Excel 5.0 menu bars do not have an equivalent command bar. These earlier menu bars have been removed to provide consistency with the other Microsoft Office 98 programs. For this reason, if you use the MenuBars method to display a menu bar, a different command bar than the one you specify may appear.To display a command bar in Microsoft Excel 98, you can use the following MenuBars command in a macro
where <xlConstant> is a variable.
The following table lists the Microsoft Excel 98 command bar equivalents for the Microsoft Excel version 5.0 menu bars and the corresponding values.
Example:
In Microsoft Excel 98, if you run a macro that contains the following command
Microsoft Excel 98 displays the "Worksheet Menu Bar" command bar because
the xlWorksheet4 value translates to "Worksheet Menu Bar" in Microsoft
Excel 98.
To run the equivalent command in Microsoft Excel 98, use the following command:
NOTE: The CommandBars command does not use the value listed in the table.
Instead, the command uses the name of the command bar that you want to
display.
The Visual Basic Module Menu Bar: The "Visual Basic Module" (xlModule) menu bar is not available in Microsoft Excel 98; there is no equivalent command bar. Instead, you must display the Visual Basic Editor. To do this, use the following command:
Microsoft Excel 5.0In Microsoft Excel version 5.0, there are nine built-in menu bars that you can display by using the following MenuBars command in a macro
where <xlConstant> is a variable.
The following table lists the built-in menu bars and the corresponding values that you use with the MenuBars command.
Example:
To display the Microsoft Excel 4.0 Worksheet MenuBar in Microsoft Excel 5.0, use the following command:
Additional query words: XL98
Keywords : xlvbahowto xlvbmigrate |
Last Reviewed: November 9, 1999 © 2000 Microsoft Corporation. All rights reserved. Terms of Use. |