Consulting

Results 1 to 2 of 2

Thread: how to enable menu bar sub title?

  1. #1
    VBAX Regular
    Joined
    Jun 2010
    Posts
    58
    Location

    how to enable menu bar sub title?

    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...

  2. #2
    Are you using VBA code in any database to hide the any menu or toolbar?


    Maybe this is what you are looking for:
        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
    Boyd Trimmell aka HiTechCoach
    Microsoft Access MVP -2010-2015

    Programming: Nine different ways to do it right, a thousand ways to do it wrong.
    Binary--it's as easy as 1-10-11

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •