ACC2000: Error Creating CommandBar with Duplicate NameID: Q208715
|
Advanced: Requires expert coding, interoperability, and multiuser skills.
If you try to create a command bar with an existing name by using Visual
Basic for Applications, you may receive the following error message:
If you try to create a command bar with an existing name by using the user interface, you may receive the following error message:Run-time error '5':
Invalid procedure call or argument
A toolbar named '<name>' already exists. Type another name.
You cannot create multiple command bars with the same name in any Microsoft Office file, except in Microsoft Word.
Only Word is able to create multiple command bars with the same name through Visual Basic for Applications because Word needs the ability to have multiple command bars with the same name when two templates are open.
Option Explicit
Function CreateCmdBar()
Dim cb As CommandBar
Set cb = Application.CommandBars.Add("Test1")
Set cb = Application.CommandBars.Add("Test1")
End Function
?CreateCmdBar()
Note that you receive the following error message on the third line of code:Run-time error '5':
Invalid procedure call or argument
A toolbar named 'Test2' already exists. Type another name.
For more information about creating command bars through code, in the Visual Basic Editor, click
Microsoft Visual Basic Help on the Help menu, type "Add Method, command bars" in
the Office Assistant or the Answer Wizard, and then click Search to
view the topic.
For more information about creating command bars through the user interface, click Microsoft Access Help on the
Help menu, type "command bars" in the Office Assistant or the Answer Wizard,
and then click Search to view the topics returned.
Additional query words: menubar toolbar menu shortcut xl excel access word powerpoint
Keywords : kberrmsg kbui kbdta GnlOthr
Version : WINDOWS:2000
Platform : WINDOWS
Issue type : kbprb
Last Reviewed: May 13, 1999