hi all...
My access 2003 database under menu bar tool option, all the menus are disable (e.g startup,customize etc.).
Please tell me how to enable these.
thanks...
Printable View
hi all...
My access 2003 database under menu bar tool option, all the menus are disable (e.g startup,customize etc.).
Please tell me how to enable these.
thanks...
Are you using VBA code in any database to hide the any menu or toolbar?
Maybe this is what you are looking for:
Code:DoCmd.ShowToolbar "Menu Bar", acToolbarYes
DoCmd.ShowToolbar "Print Preview", acToolbarWhereApprop
DoCmd.ShowToolbar "Database", acToolbarWhereApprop
DoCmd.ShowToolbar "Form View", acToolbarWhereApprop
DoCmd.ShowToolbar "Form Design", acToolbarWhereApprop
DoCmd.ShowToolbar "Formatting (Form/Report)", acToolbarWhereApprop
DoCmd.ShowToolbar "Web", acToolbarWhereApprop
DoCmd.ShowToolbar "Report Design", acToolbarWhereApprop
DoCmd.ShowToolbar "Formatting (Datasheet)", acToolbarWhereApprop
DoCmd.ShowToolbar "Query Design", acToolbarWhereApprop
DoCmd.ShowToolbar "Query Datasheet", acToolbarWhereApprop
DoCmd.ShowToolbar "Custom Toolbar", acToolbarWhereApprop