Welcome toWord.Tips.Net
Ask a Word Question
Make a Comment
Learn Access Now
Free Printable Forms
Beauty Tips
Car Tips
Cleaning Tips
College Tips
Cooking Tips
Excel2007 Tips
ExcelTips
Family Tips
Gardening Tips
Health Tips
Home Tips
Legal Tips
Money Tips
Organizing Tips
Pest Tips
Pet Tips
Wedding Tips
Word2007 Tips
WordTips
Printing On Both Sides of the Paper
Turning Off AutoComplete for Dates
Understanding Auto Line Spacing
Adding Comments to Your Document
Conditional Calculations in Word
Subscriber Dave Niemeyer reported a situation in which one of his Word users had somehow completely lost the menu bar. Theoretically, the menu bar should not be "losable," so when such an event does occur, it is a good sign that something is wrong.
There are a few things you can check. First, because the menu bar is treated pretty much like a toolbar, it is possible to undock it and move it anywhere desired on the screen. If you run Windows at a high resolution, undock the menu bar and move it to the far right of the screen, and then change to a lower resolution in Windows, it is possible that the menu bar won't be visible because it is now outside the area of the screen you can see.
If you suspect this is the case, trying changing back to the higher resolution--just temporarily--and moving the menu bar back where it belongs. When you later switch to the lower resolution, the menu bar should still be visible.
If this doesn't do it, try these steps:
Hopefully, this will display your menu bar. If it doesn't, try starting Word from the command line with the /a switch. Depending on the problem that may be causing the missing menu bar, this could trigger Word to do some repairs to itself. You can also try exiting Word and deleting or renaming the Normal.dot file, which is the default location for saving many customizations in Word.
If the menu bar is still not visible, there is one other macro-based solution you can try. Run the following macro:
Sub FindBars()
Dim cb As CommandBar
For Each cb In Application.CommandBars
If cb.Position = msoBarFloating And cb.Visible = True Then
cb.Position = msoBarTop
End If
Next
End Sub
This macro steps through every one of the command bars (which means both menu bars and toolbars) and, if they are floating and visible, puts them back in their default position at the top of the Word window.
If you are wondering how you can run the macro when you cannot get to the VBA Editor by using menus you cannot see, remember that you can display the Macros dialog box by pressing Alt+F8, or you can jump directly to the VBA Editor by pressing Alt+F11.
If you continue to have problems with the menu bar, then more drastic action is necessary. There is an excellent article at the Word MVP site that indicates some of the steps (including the drastic ones) that you can take:
http://www.mvps.org/word/FAQs/AppErrors/MissingMenusEtc.htm
Tip #59 applies to Microsoft Word versions: 97 2000 2002 2003
More Power! For some people, the prospect of creating Word macros can be scary. WordTips: The Macros can help you conquer your fears and you'll discover you're much more confident and productive as you make Word do exactly what you want. This is an invaluable source for learning macros. You are introduced to the topic in bite-sized chunks, pulled from past issues of WordTips. Learn at your own pace, exactly the way you want.