Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
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? |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
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 Insertmodule. 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 runrunsub/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 "Saravanan" wrote: 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? |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
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" wrote in message ... 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 Insertmodule. 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 runrunsub/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 "Saravanan" wrote: 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? |
#4
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
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 "Bob Phillips" wrote: 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" wrote in message ... 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 Insertmodule. 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 runrunsub/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 "Saravanan" wrote: 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? |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Create Dropdown menu without using the Validation on the Data Menu | Excel Worksheet Functions | |||
dropdown menu or Jump menu | Excel Discussion (Misc queries) | |||
How do I see the menu bar in excel? | Excel Discussion (Misc queries) | |||
my menu disappear. How can I refind my menu?? | Excel Discussion (Misc queries) | |||
Menu items added with menu item editor in older versions | Excel Discussion (Misc queries) |