Lost Menu Bar

D

Donna

If done it now - - I lost my menu bar completely -
it's gone to outter space - how do I get
File,Edit, etc back ??? I've tried to find it in help and
cannot. Can you please help
 
J

Jason Morin

Press ALT+F11, Insert > Module, and run this macro:

Sub Restore_MenuBar()
Application.CommandBars.ActiveMenuBar.Enabled = True
End Sub
 
J

John Wilson

Donna,

The following copied from a previous post by Chip Pearson...

John

<snip>
First, trying searching for and removing (or at least moving to another
location) a file with the "xlb" extension. The name and location will
depend on
a number of things. Search for *.xlb .

Also, try running the code

Application.CommandBars("Worksheet Menu Bar").Reset
Application.CommandBars("Worksheet Menu Bar").Enabled = True
<snip>
 
N

Neva

If you have any (other) toolbars open, you should be able
to right click any of them. You'll see a list of toolbars
and at the bottom should be "Customize...". Click that.

In the resulting dialog box, click the Toolbars tab,
scroll down and turn on the checkbox for "Worksheet Menu
Bar".
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top