ACC97: Error Creating CommandBar with Duplicate NameID: Q162822
|
Advanced: Requires expert coding, interoperability, and multi-user 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:
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 97 file, except in Microsoft Word 97.
This behavior is by design.
The following table demonstrates how the Microsoft Office 97 applications
behave when creating duplicate command bar names:
Application Using Code Using the User Interface
-----------------------------------------------------------------
Microsoft Word 97 Yes No
Microsoft Excel 97 No No
Microsoft Access 97 No No
Microsoft Powerpoint 97 No No
Option Explicit
Function CreateCmdBar()
Dim cb As CommandBar
Set cb = Application.CommandBars.Add("Test1")
Set cb = Application.CommandBars.Add("Test1")
End Function
?CreateCmdBar()
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, search the
Help Index for "Add Method, command bars," and then "Add Method,
(CommandBars Collection)."
For more information about creating command bars through the user
interface, ask the Microsoft Office 97 Office Assistant, "How do I
create a command bar."
Additional query words: menubar toolbar menu shortcut xl excel access word powerpoint
Keywords : kberrmsg kbui GnlOthr UifMenub
Version : 97
Platform : WINDOWS
Issue type : kbprb
Last Reviewed: April 29, 1999