ACC97: Can't Access ShortCut Menus CommandBar from Code
ID: Q162456
|
The information in this article applies to:
Advanced: Requires expert coding, interoperability, and multiuser skills.
SYMPTOMS
If you try to use the CommandBars object model in Visual Basic for
Applications to reference the Shortcut Menus toolbar, you may receive the
following error message:
Run-time error '5':
Invalid procedure call or argument
CAUSE
You can't use Visual Basic for Applications to reference the Shortcut Menus
toolbar. It is the only toolbar that is not available by using Visual
Basic for Applications.
RESOLUTION
Although you cannot reference the Shortcut Menus toolbar through code, you
can reference any custom shortcut menu through code. If you want to
programmatically modify a custom shortcut menu through code, you will need
to make a reference to the specific shortcut menu you are trying to
change. This article demonstrates how to create a custom shortcut menu and
then how to reference it using Visual Basic for Applications.
This article assumes that you are familiar with Visual Basic for
Applications and with creating Microsoft Access applications using the
programming tools provided with Microsoft Access. For more information
about Visual Basic for Applications, please refer to the "Building
Applications with Microsoft Access 97" manual.
To create and reference a custom shortcut menu using Visual Basic for
Applications, follow these steps:
- Open the sample database, Northwind.mdb, and on the View menu, point to Toolbars, and click Customize.
- In the Customize dialog box, on the Toolbars tab, click New.
- In the New Toolbar dialog box, type MyCustomShortCut in the Toolbar
Name box. Click OK.
NOTE: A new toolbar appears in the Customize dialog box.
- In the Customize dialog box, on the Toolbars tab, click Properties.
- In the Toolbar Properties dialog box, make sure MyCustomShortcut is
selected in the Selected Toolbar list. In the Type list, click
Popup. Click OK on the informational message displayed.
- Click Close on the Toolbar Properties dialog box. Click Close on the
Customize dialog box.
- Create a module and type the following line in the Declarations
section if it is not already there:
Option Explicit
- Type the following procedure in the module:
Function RefShortcut()
Dim cb as CommandBar
Set cb = CommandBars("MyCustomShortcut")
Msgbox cb.Name
End Function
- To test this function, type the following line in the Debug window,
and then press ENTER:
?RefShortcut()
Note that the message box opens and displays the name of the custom
shortcut menu.
MORE INFORMATION
Steps to Reproduce Behavior
- Create a module and type the following line in the Declarations section if it is not already there:
Option Explicit
- Type the following procedure in the module:
Function Test()
Dim cb as CommandBar
Set cb = CommandBars("Shortcut Menus")
Msgbox cb.Name
End Function
- To test this function, type the following line in the Debug window,
and then press ENTER:
?Test()
Note that you receive the following error message:
Run-time error '5':
Invalid procedure call or argument
REFERENCES
For more information about custom shortcut menus, search the Help Index
for "shortcut menus, creating," or ask the Microsoft Access 97 Office
Assistant.
Additional query words:
Word Powerpoint commandbar context command bar bars
Keywords : kberrmsg kbprg kbdta AccCon KbVBA
Version : WINDOWS:97
Platform : WINDOWS
Issue type : kbprb