ACC95: Run Macro Command Not Available on Startup MenuLast reviewed: May 12, 1997Article ID: Q138772 |
The information in this article applies to:
SYMPTOMSModerate: Requires basic macro, coding, and interoperability skills. When you run a macro or Visual Basic for Applications routine that uses a DoMenuItem action to choose the Macro command from the Startup menu, you may receive the following error message:
The command or action 'Macro' isn't available now" CAUSEThe Macro command is not available on the Startup menu.
RESOLUTIONInstead of using the DoMenuItem action to run a macro, use the RunMacro action. You can use the RunMacro action in macros and in Visual Basic code. The syntax for the RunMacro action is as follows
DoCmd.RunMacro <"macroname">where <macroname> is the name of the macro you want to run.
STATUSThis behavior is by design.
MORE INFORMATIONIn run-time applications developed with the Microsoft Access Developer's Toolkit, the startup menu is available only if all the open forms are hidden. As a general rule, an application's users should not be allowed to gain access to this menu manually. Also, you should try to avoid using macros in applications designed to run in the run-time environment unless they are absolutely necessary (for example, for menus, custom toolbars, AutoExec macros, and so on). A macro's lack of error handling capabilities may lead to an abrupt or awkward termination of the application.
Steps to Reproduce Behavior
REFERENCESFor more information about the RunMacro action, search for "RunMacro Action," using the Microsoft Access for Windows 95 Help Index. For more information about the DoMenuItem action, search for "DoMenuItem Action," using the Microsoft Access for Windows 95 Help Index. |
Keywords : kberrmsg kbusage McrProb
© 1998 Microsoft Corporation. All rights reserved. Terms of Use. |