Notice: This website is an unofficial Microsoft Knowledge Base (hereinafter KB) archive and is intended to provide a reliable access to deleted content from Microsoft KB. All KB articles are owned by Microsoft Corporation. Read full disclaimer for more details.

ACC2000: Can't Access ShortCut Menus CommandBar from Code


View products that this article applies to.

This article was previously published under Q208444
Advanced: Requires expert coding, interoperability, and multiuser skills.

↑ Back to the top


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

↑ Back to the top


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.

↑ Back to the top


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.

Microsoft provides programming examples for illustration only, without warranty either expressed or implied. This includes, but is not limited to, the implied warranties of merchantability or fitness for a particular purpose. This article assumes that you are familiar with the programming language that is being demonstrated and with the tools that are used to create and to 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 requirements. To create and reference a custom shortcut menu using Visual Basic for Applications, follow these steps:
1.Open the sample database, Northwind.mdb, and on the View menu, point to Toolbars, and click Customize.
2.In the Customize dialog box, on the Toolbars tab, click New.
3.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.
4.In the Customize dialog box, on the Toolbars tab, click Properties.
5.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.
6.Click Close in the Toolbar Properties dialog box. Click Close in the Customize dialog box.
7.Create a module and type the following line in the Declarations section if it is not already there:
Option Explicit
					
8.Type the following procedure in the module:
Function RefShortcut()
   Dim cb as CommandBar
   Set cb = CommandBars("MyCustomShortcut")
   Msgbox cb.Name
End Function
					
9.To test this function, type the following line in the Immediate window, and then press ENTER:
?RefShortcut()
					
Note that the message box opens and displays the name of the custom shortcut menu.

↑ Back to the top


More information

Steps to Reproduce Behavior

1.Create a module and type the following line in the Declarations section if it is not already there:
Option Explicit
					
2.Type the following procedure in the module:
Function Test()
   Dim cb as CommandBar
   Set cb = CommandBars("Shortcut Menus")
   Msgbox cb.Name
End Function
					
3.To test this function, type the following line in the Immediate window, and then press ENTER:
?Test()
						
Note that you receive the following error message:
Run-time error '5': Invalid procedure call or argument

↑ Back to the top


References

For more information about shortcut menus, click Microsoft Access Help on the Help menu, type work with menu bars and shortcut menus in the Office Assistant or the Answer Wizard, and then click Search to view the topic.

↑ Back to the top


Keywords: KB208444, kbprogramming, kbprb, kberrmsg

↑ Back to the top

Article Info
Article ID : 208444
Revision : 4
Created on : 10/11/2006
Published on : 10/11/2006
Exists online : False
Views : 289