Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 31
Default how do i get the menu bar to be displayed ?

how do i get the manu bar to show up on the top of the screen. ?

  #2   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 3,365
Default how do i get the menu bar to be displayed ?

I hope you mean that it has just moved either to one side or the other of the
window or perhaps to the bottom or center?

If it is at one of the edges of the Excel window, look for the little set of
3 dots at top/left edge of it. Move your mouse over those and it should
change to a 4-headed arrow symbol. Click and drag the menu to where you want
it.

If the menu is out in the middle of the Excel window - click on the title
bar and drag it to where you want it.

I don't think there's any way to not display it (I could be wrong), but I
believe the basic Menu bar is an "indestructible" part of the Excel window
itself.

If you are talking about anything other than the Menu bar with the words
"File Edit ..." etc. in it, then you can bring other toolbars into view by
using View | Toolbars from the (word) menu and select which other toolbars
you'd like to see.
"Trevor" wrote:

how do i get the manu bar to show up on the top of the screen. ?

  #3   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 22,906
Default how do i get the menu bar to be displayed ?

Perhaps someone used VBA code to hide it?

Try this toggle macro.

Sub Worksheet_Menu_Hide()
If Application.CommandBars("Worksheet Menu Bar").Enabled = True Then
Application.CommandBars("Worksheet Menu Bar").Enabled = False
Else
Application.CommandBars("Worksheet Menu Bar").Enabled = True
End If
End Sub


Gord Dibben MS Excel MVP

On Sun, 6 May 2007 22:09:01 -0700, JLatham <HelpFrom @
Jlathamsite.com.(removethis) wrote:

I hope you mean that it has just moved either to one side or the other of the
window or perhaps to the bottom or center?

If it is at one of the edges of the Excel window, look for the little set of
3 dots at top/left edge of it. Move your mouse over those and it should
change to a 4-headed arrow symbol. Click and drag the menu to where you want
it.

If the menu is out in the middle of the Excel window - click on the title
bar and drag it to where you want it.

I don't think there's any way to not display it (I could be wrong), but I
believe the basic Menu bar is an "indestructible" part of the Excel window
itself.

If you are talking about anything other than the Menu bar with the words
"File Edit ..." etc. in it, then you can bring other toolbars into view by
using View | Toolbars from the (word) menu and select which other toolbars
you'd like to see.
"Trevor" wrote:

how do i get the manu bar to show up on the top of the screen. ?


  #4   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 3,365
Default how do i get the menu bar to be displayed ?

Darned good thing I qualified my statement! Always something new to learn -
and a reminder of "just because I haven't done it, doesn't mean it can't be
done".

"Gord Dibben" wrote:

Perhaps someone used VBA code to hide it?

Try this toggle macro.

Sub Worksheet_Menu_Hide()
If Application.CommandBars("Worksheet Menu Bar").Enabled = True Then
Application.CommandBars("Worksheet Menu Bar").Enabled = False
Else
Application.CommandBars("Worksheet Menu Bar").Enabled = True
End If
End Sub


Gord Dibben MS Excel MVP

On Sun, 6 May 2007 22:09:01 -0700, JLatham <HelpFrom @
Jlathamsite.com.(removethis) wrote:

I hope you mean that it has just moved either to one side or the other of the
window or perhaps to the bottom or center?

If it is at one of the edges of the Excel window, look for the little set of
3 dots at top/left edge of it. Move your mouse over those and it should
change to a 4-headed arrow symbol. Click and drag the menu to where you want
it.

If the menu is out in the middle of the Excel window - click on the title
bar and drag it to where you want it.

I don't think there's any way to not display it (I could be wrong), but I
believe the basic Menu bar is an "indestructible" part of the Excel window
itself.

If you are talking about anything other than the Menu bar with the words
"File Edit ..." etc. in it, then you can bring other toolbars into view by
using View | Toolbars from the (word) menu and select which other toolbars
you'd like to see.
"Trevor" wrote:

how do i get the manu bar to show up on the top of the screen. ?



  #5   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 31
Default how do i get the menu bar to be displayed ?

Hi JLatham..
all my spreadsheets including "new" spreadsheets are only showing just the
blue bar...nothing else !!!

what i did initially was to re-customise the spreadsheet i was working on
...so i dragged all the items from the top of the spreadsheet to the toolbox
pop up window, including the menu barhence lost it.


do you want me to cut and paste the problem

CHEERS
TREVOR

"JLatham" wrote:

Darned good thing I qualified my statement! Always something new to learn -
and a reminder of "just because I haven't done it, doesn't mean it can't be
done".

"Gord Dibben" wrote:

Perhaps someone used VBA code to hide it?

Try this toggle macro.

Sub Worksheet_Menu_Hide()
If Application.CommandBars("Worksheet Menu Bar").Enabled = True Then
Application.CommandBars("Worksheet Menu Bar").Enabled = False
Else
Application.CommandBars("Worksheet Menu Bar").Enabled = True
End If
End Sub


Gord Dibben MS Excel MVP

On Sun, 6 May 2007 22:09:01 -0700, JLatham <HelpFrom @
Jlathamsite.com.(removethis) wrote:

I hope you mean that it has just moved either to one side or the other of the
window or perhaps to the bottom or center?

If it is at one of the edges of the Excel window, look for the little set of
3 dots at top/left edge of it. Move your mouse over those and it should
change to a 4-headed arrow symbol. Click and drag the menu to where you want
it.

If the menu is out in the middle of the Excel window - click on the title
bar and drag it to where you want it.

I don't think there's any way to not display it (I could be wrong), but I
believe the basic Menu bar is an "indestructible" part of the Excel window
itself.

If you are talking about anything other than the Menu bar with the words
"File Edit ..." etc. in it, then you can bring other toolbars into view by
using View | Toolbars from the (word) menu and select which other toolbars
you'd like to see.
"Trevor" wrote:

how do i get the manu bar to show up on the top of the screen. ?





  #6   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 3,365
Default how do i get the menu bar to be displayed ?

Look at Gord Dibben's post above. He has code that may get you out of this
situation - To get his code to where you can use it, open Excel and then
press [Alt]+[F11] at the same time. The VB Editor will open, It should
still have its menu in one piece and visible. Click Insert then choose
Module. Cut and paste his code into the module that appears (big white area
in what was big gray area). Click anywhere inside of the code you just
pasted into the module and press the [F5] key - that causes the code to run.
Hopefully at that point your regular Excel menu bar will be visible again.

Post back if it is not, and also tell us which version of Excel you're using.

"Trevor" wrote:

Hi JLatham..
all my spreadsheets including "new" spreadsheets are only showing just the
blue bar...nothing else !!!

what i did initially was to re-customise the spreadsheet i was working on
..so i dragged all the items from the top of the spreadsheet to the toolbox
pop up window, including the menu barhence lost it.


do you want me to cut and paste the problem

CHEERS
TREVOR

"JLatham" wrote:

Darned good thing I qualified my statement! Always something new to learn -
and a reminder of "just because I haven't done it, doesn't mean it can't be
done".

"Gord Dibben" wrote:

Perhaps someone used VBA code to hide it?

Try this toggle macro.

Sub Worksheet_Menu_Hide()
If Application.CommandBars("Worksheet Menu Bar").Enabled = True Then
Application.CommandBars("Worksheet Menu Bar").Enabled = False
Else
Application.CommandBars("Worksheet Menu Bar").Enabled = True
End If
End Sub


Gord Dibben MS Excel MVP

On Sun, 6 May 2007 22:09:01 -0700, JLatham <HelpFrom @
Jlathamsite.com.(removethis) wrote:

I hope you mean that it has just moved either to one side or the other of the
window or perhaps to the bottom or center?

If it is at one of the edges of the Excel window, look for the little set of
3 dots at top/left edge of it. Move your mouse over those and it should
change to a 4-headed arrow symbol. Click and drag the menu to where you want
it.

If the menu is out in the middle of the Excel window - click on the title
bar and drag it to where you want it.

I don't think there's any way to not display it (I could be wrong), but I
believe the basic Menu bar is an "indestructible" part of the Excel window
itself.

If you are talking about anything other than the Menu bar with the words
"File Edit ..." etc. in it, then you can bring other toolbars into view by
using View | Toolbars from the (word) menu and select which other toolbars
you'd like to see.
"Trevor" wrote:

how do i get the manu bar to show up on the top of the screen. ?



  #7   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 31
Default how do i get the menu bar to be displayed ?

I reloaded excel and it worked ....but its back again....NO MENU BAR !!!

"Trevor" wrote:

Hi JLatham..
all my spreadsheets including "new" spreadsheets are only showing just the
blue bar...nothing else !!!

what i did initially was to re-customise the spreadsheet i was working on
..so i dragged all the items from the top of the spreadsheet to the toolbox
pop up window, including the menu barhence lost it.


do you want me to cut and paste the problem

CHEERS
TREVOR

"JLatham" wrote:

Darned good thing I qualified my statement! Always something new to learn -
and a reminder of "just because I haven't done it, doesn't mean it can't be
done".

"Gord Dibben" wrote:

Perhaps someone used VBA code to hide it?

Try this toggle macro.

Sub Worksheet_Menu_Hide()
If Application.CommandBars("Worksheet Menu Bar").Enabled = True Then
Application.CommandBars("Worksheet Menu Bar").Enabled = False
Else
Application.CommandBars("Worksheet Menu Bar").Enabled = True
End If
End Sub


Gord Dibben MS Excel MVP

On Sun, 6 May 2007 22:09:01 -0700, JLatham <HelpFrom @
Jlathamsite.com.(removethis) wrote:

I hope you mean that it has just moved either to one side or the other of the
window or perhaps to the bottom or center?

If it is at one of the edges of the Excel window, look for the little set of
3 dots at top/left edge of it. Move your mouse over those and it should
change to a 4-headed arrow symbol. Click and drag the menu to where you want
it.

If the menu is out in the middle of the Excel window - click on the title
bar and drag it to where you want it.

I don't think there's any way to not display it (I could be wrong), but I
believe the basic Menu bar is an "indestructible" part of the Excel window
itself.

If you are talking about anything other than the Menu bar with the words
"File Edit ..." etc. in it, then you can bring other toolbars into view by
using View | Toolbars from the (word) menu and select which other toolbars
you'd like to see.
"Trevor" wrote:

how do i get the manu bar to show up on the top of the screen. ?



  #8   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 31
Default how do i get the menu bar to be displayed ?

Hi Gord

Only I use my computer...and i dont use VBA
Perhaps the best solution is to reload the software
Cheers Trevor



"Gord Dibben" wrote:

Perhaps someone used VBA code to hide it?

Try this toggle macro.

Sub Worksheet_Menu_Hide()
If Application.CommandBars("Worksheet Menu Bar").Enabled = True Then
Application.CommandBars("Worksheet Menu Bar").Enabled = False
Else
Application.CommandBars("Worksheet Menu Bar").Enabled = True
End If
End Sub


Gord Dibben MS Excel MVP

On Sun, 6 May 2007 22:09:01 -0700, JLatham <HelpFrom @
Jlathamsite.com.(removethis) wrote:

I hope you mean that it has just moved either to one side or the other of the
window or perhaps to the bottom or center?

If it is at one of the edges of the Excel window, look for the little set of
3 dots at top/left edge of it. Move your mouse over those and it should
change to a 4-headed arrow symbol. Click and drag the menu to where you want
it.

If the menu is out in the middle of the Excel window - click on the title
bar and drag it to where you want it.

I don't think there's any way to not display it (I could be wrong), but I
believe the basic Menu bar is an "indestructible" part of the Excel window
itself.

If you are talking about anything other than the Menu bar with the words
"File Edit ..." etc. in it, then you can bring other toolbars into view by
using View | Toolbars from the (word) menu and select which other toolbars
you'd like to see.
"Trevor" wrote:

how do i get the manu bar to show up on the top of the screen. ?



Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
how do i format the text displayed in a drop down menu? BMA Excel Discussion (Misc queries) 1 March 20th 07 11:41 AM
Limiting what it displayed from drop down menu Orion96 Excel Worksheet Functions 4 September 5th 06 12:30 PM
Create Dropdown menu without using the Validation on the Data Menu lostinformulas Excel Worksheet Functions 0 July 13th 06 08:47 PM
dropdown menu or Jump menu the dude Excel Discussion (Misc queries) 1 March 26th 06 07:58 PM
Menu items added with menu item editor in older versions Michael Hoffmann Excel Discussion (Misc queries) 2 January 7th 05 01:40 PM


All times are GMT +1. The time now is 11:08 PM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Copyright ©2004-2025 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"