WD97: Macro Error When Opening Template with ToolbarLast reviewed: March 16, 1998Article ID: Q163052 |
The information in this article applies to:
SYMPTOMSWhen you use a macro to open a template, you may receive one of the following errors:
- Run-time error '-2147467259(80004005): Method 'Visible' of object 'CommandBar failed -or- - Run-time error '7': Out of memory CAUSEThis problem occurs if an AutoNew or AutoOpen macro is attempting to make a toolbar visible that has the same name of a toolbar that is currently displayed. For example,
If you have a template named Template1 that contains a toolbar named "Custom 1" and an AutoOpen macro that makes this toolbar visible when a document that is based on this template is opened. -and- You also have a template named Template2 which contains a toolbar also named "Custom 1," and an AutoOpen macro that displays this toolbar.When you open "Template1" or a document based on "Template1", the AutoOpen macro runs and displays the "Custom 1" toolbar. If you then open "Template2" or a document based on "Template2", you receive one of the error messages listed in the "Symptoms" section of 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 engineers 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/refguide/default.aspTo prevent these errors from occurring, use one of the following methods.
Method 1: Remove or Disable the Command That Displays the ToolbarEdit the auto macro in one or both of the templates to remove or disable the command that displays the toolbar. For example, the command line that may be causing the error may be either of the following.
Macro converted from WordBasic: WordBasic.ViewToolBars Toolbar:="Custom 1", Show:=1 Visual Basic for Applications macro: CommandBars("Custom 1").Visible = TrueAdding an apostrophe at the beginning of either line will disable the command.
Method 2: Rename One ToolBar to a Unique NameRename one of the toolbars to a unique name and edit the macro of the same template to reference the changed toolbar name.
Method 3: Add an Error Trap for the ErrorAdding an error trap will prevent the error if Word attempts to display both toolbars at the same time. NOTE: Using an error trap will skip the command to display the second toolbar. As a workaround, you can choose Toolbars on the View menu to display the toolbar without receiving an error. The following is an example of an error trap that can be used in this case:
On Error Resume Next CommandBars("Custom 1").Visible = TrueFor more information about error trapping, click the Office Assistant while in the Visual Basic Editor, type "error trap," click Search, and then click to view "On Error Statement." NOTE: If the Assistant is hidden, click the Office Assistant button on the Standard toolbar. If the Assistant is not able to answer your query, please see the following article in the Microsoft Knowledge Base:
ARTICLE-ID: Q176476 TITLE : OFF: Office Assistant Not Answering Visual Basic Questions Method 4: Check the Visible state of the toolbar
' If the Custom toolbar is not visible then... If CommandBars("Custom 1").Visible = False Then ' ...make the Custom toolbar visible. CommandBars("Custom 1").Visible = True End If STATUSMicrosoft has confirmed this to be a problem in the Microsoft products listed at the beginning of this article. We are researching this problem and will post new information here in the Microsoft Knowledge Base as it becomes available.
MORE INFORMATIONFor more information about how to edit a macro, click the Office Assistant while in the Visual Basic Editor, type "edit a macro," click Search, and then click to view "Edit a macro." NOTE: If the Assistant is hidden, click the Office Assistant button on the Standard toolbar. If the Assistant is not able to answer your query, please see the following article in the Microsoft Knowledge Base:
ARTICLE-ID: Q176476 TITLE : OFF: Office Assistant Not Answering Visual Basic QuestionsFor additional information, please see the following article in the Microsoft Knowledge Base:
ARTICLE-ID: Q173707 TITLE : OFF97: How to Run Sample Code from Knowledge Base Articles REFERENCESFor more information about getting help with Visual Basic for Applications, please see the following article in the Microsoft Knowledge Base:
ARTICLE-ID: Q163435 TITLE : VBA: Programming Resources for Visual Basic for Applications |
Additional query words: vb vba vbe
© 1998 Microsoft Corporation. All rights reserved. Terms of Use. |