Applies To
Database object.
Description
You can use the AllowFullMenus property to specify whether or not full Microsoft Access built-in menus will be available when the application database opens. For example, you can use the AllowFullMenus property to disable menu items that give users the ability to modify table, form, query, or report structures.
Setting
The AllowFullMenus property uses the following settings.
Setting
Description
True (–1)
Display the full built-in menus at startup.
False (0)
Don't display full built-in menus at startup.
The easiest way to set this property is by using the Allow Full Menus option in the Startup dialog box, available by clicking Startup on the Tools menu. You can also set this property by using a macro or Visual Basic.
To set the AllowFullMenus property by using a macro or Visual Basic, you must first either set the property in the Startup dialog box once or create the property by using the CreateProperty method and append it to the Properties collection of the Database object.
Remarks
If you set this property to False, a predefined subset of the full built-in menus is displayed in your database. This set of menus doesn't include menus and commands that enable users to change the design of database objects.
Setting this property to False also disables the toolbar buttons that correspond to the disabled menu items. However, shortcut menus aren't affected (you can still change some design features by using shortcut menu commands). If you don't want users to have access to the commands on the shortcut menus, you can set the AllowShortcutMenus property to False.
This property's setting doesn't take effect until the next time the database opens.
See Also
AllowBreakIntoCode property, AllowShortcutMenus property, CreateProperty method ("DAO Language Reference"), Properties collection ("DAO Language Reference"), StartupMenuBar property, StartupShortcutMenuBar property.
Example
See the AllowBreakIntoCode property example.