Excel Menu

G

Guest

When I open excel there is no menu appeared. All the menus are disappeared
and i am unable to clik right mouse button also.

I think i might have clicked to something hide menu. How can show them again?
 
G

Guest

hi,
I'm not sure if this will do it for you but it's worth a try.
press the keyboard keys Alt +F11. this will bring up the VB editor.
In the VB editor click Insert>module.
Paste this code in the code window.

Sub macMenu()

Application.CommandBars("Worksheet Menu Bar").Visible = True
Application.CommandBars("Standard").Visible = True

End Sub

to run the macro click run>runsub/userform or just hit the F5 key.

this should put the menu and the standard toolbar in excel. you should then
be able to right click the tool bar and customize

Good luck.
hope this helped
regards
FSt1
 
B

Bob Phillips

That should be

Application.CommandBars("Worksheet Menu Bar").Enabled = True


--
HTH

Bob Phillips

(there's no email, no snail mail, but somewhere should be gmail in my addy)

FSt1 said:
hi,
I'm not sure if this will do it for you but it's worth a try.
press the keyboard keys Alt +F11. this will bring up the VB editor.
In the VB editor click Insert>module.
Paste this code in the code window.

Sub macMenu()

Application.CommandBars("Worksheet Menu Bar").Visible = True
Application.CommandBars("Standard").Visible = True

End Sub

to run the macro click run>runsub/userform or just hit the F5 key.

this should put the menu and the standard toolbar in excel. you should then
be able to right click the tool bar and customize

Good luck.
hope this helped
regards
FSt1
again?
 
G

Guest

Thanks Guys. I used the both enabled and visible, now it is showing toolbar
only not the menu. Also I am unable click the right mouse button. Expecting
you help. Thanks.

Regards,
Saravanan
 

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