XL97: Error Adding or Deleting a Menu Command in a Macro (160520)
The information in this article applies to:
- Microsoft Excel 97 for Windows
This article was previously published under Q160520 SYMPTOMS
In Microsoft Excel 97, if you run a Visual Basic for Applications macro
that adds a command to a menu or deletes a command from a menu, you may
receive the following error message:
Run-time error '1004':
Application-defined or object-defined error
CAUSE
This behavior occurs when, in the macro command to add or delete the menu
command, you specify a menu command that no longer exists, or is changed in
Microsoft Excel 97.
This behavior is by design of Microsoft Excel.
For a list of the menu commands that are changed in Microsoft Excel 97, see
the "More Information" section in this article.
WORKAROUNDMicrosoft 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 a Microsoft Certified Partner or the Microsoft fee-based
consulting line at (800) 936-5200. For more information about Microsoft Certified
Partners, please visit the following Microsoft Web site:
For more information about the support options that are available and about how to contact Microsoft, visit the following Microsoft Web site:
To work around this behavior, use either of the following methods:
Although this macro works correctly in earlier versions of Microsoft
Excel, it does not work in Microsoft Excel 97. The macro does not work
because the "Toolbars..." command is called Toolbars (no ellipsis) in
Microsoft Excel 97.
However, the following macro works correctly in all versions of
Microsoft Excel:
Sub AddTest2()
'Test whether you use Microsoft Excel 5.0 or 7.0.
If Val(Application.Version) < 8 Then
'Set the value of the variable equal to the correct menu
'command name for Microsoft Excel 5.0 and 7.0.
xBefore = "Toolbars..."
'Otherwise, assume you use Microsoft Excel 97 (version 8.0).
ElseIf Val(Application.Version) = 8 Then
'Set the value of the variable equal to the correct menu
'command name for Microsoft Excel 97.
xBefore = "Toolbars"
End If
'Add the new command. The command works correctly because the
'menu command name in the Before argument (the variable xBefore)
'is correct.
MenuBars(xlWorksheet).Menus("View").MenuItems.Add _
Caption:="Test", Before:=xBefore
End Sub
Modification Type: | Minor | Last Reviewed: | 10/10/2006 |
---|
Keywords: | kbdtacode kberrmsg kbprb KB160520 |
---|
|