Access 2000 /XP - Lost Menu Bar

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • ML

    #1

    Access 2000 /XP - Lost Menu Bar

    Across all of my Access 2000 applications, I have suddenly "lost" the menu
    bar. File Edit ....... at the top.

    I can't find any info on this "problem".

    Any suggestions on getting it back will be greatly appreciated.

    TIA
    Michael


  • Allen Browne

    #2
    Re: Access 2000 /XP - Lost Menu Bar

    Does Alt+T cause the Tools menu to activate?
    If so, choose Startup and you can then check the boxes for the items that
    should appear.

    If not, you will need to set the options with code.
    Open the code window.
    The open the Immediate window.
    Enter:
    dbEngine(0)(0). Properties("All owBuiltinToolba rs") = True

    Other relevent properties to set include:
    AllowSpecialKey s
    AllowFullMenus
    That should be enough to get your menus operating again.

    --
    Allen Browne - Microsoft MVP. Perth, Western Australia.
    Tips for Access users - http://allenbrowne.com/tips.html
    Reply to group, rather than allenbrowne at mvps dot org.

    "ML" <mdlewis@bigpon d.net.au> wrote in message
    news:hEz1d.3062 5$D7.28379@news-server.bigpond. net.au...[color=blue]
    > Across all of my Access 2000 applications, I have suddenly "lost" the menu
    > bar. File Edit ....... at the top.
    >
    > I can't find any info on this "problem".
    >
    > Any suggestions on getting it back will be greatly appreciated.
    >
    > TIA
    > Michael[/color]


    Comment

    Working...