Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 3
Default Missing worksheet menu bar Excel 2003

From time to time one of my users will close my custom Excel 2003 application
and find the worksheet menu bar (File, Edit, Tools, etc.) missing in regular
Excel.

Customizing the toolbars in the usual way won't work because the worksheet
menu bar is missing from the choices, and In our installation macros are
disabled by default so code won't work either.

I need a way either to restore the menu bar with, say, a keyboard shortcut,
or to enable macros without the menu so VBA code can run. Any help will be
much appreciated.
--
Rick Solie
  #2   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 2,819
Default Missing worksheet menu bar Excel 2003

Alt - T - C

Rick Solie wrote:

From time to time one of my users will close my custom Excel 2003 application
and find the worksheet menu bar (File, Edit, Tools, etc.) missing in regular
Excel.

Customizing the toolbars in the usual way won't work because the worksheet
menu bar is missing from the choices, and In our installation macros are
disabled by default so code won't work either.

I need a way either to restore the menu bar with, say, a keyboard shortcut,
or to enable macros without the menu so VBA code can run. Any help will be
much appreciated.


  #3   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 3
Default Missing worksheet menu bar Excel 2003

Thanks for this, but no luck, Alt-T-C did nothing. I think the menu bar is
"disabled" and not just not visible. The checkbox for the worksheet menu bar
doesn't appear on the customization drop-down list either. Any other
suggestions?
--
Rick Solie


"Bob I" wrote:

Alt - T - C

Rick Solie wrote:

From time to time one of my users will close my custom Excel 2003 application
and find the worksheet menu bar (File, Edit, Tools, etc.) missing in regular
Excel.

Customizing the toolbars in the usual way won't work because the worksheet
menu bar is missing from the choices, and In our installation macros are
disabled by default so code won't work either.

I need a way either to restore the menu bar with, say, a keyboard shortcut,
or to enable macros without the menu so VBA code can run. Any help will be
much appreciated.



  #4   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 2,819
Default Missing worksheet menu bar Excel 2003

Humm, if the macros cripple it, you may be trying to swim upstream.

Rick Solie wrote:

Thanks for this, but no luck, Alt-T-C did nothing. I think the menu bar is
"disabled" and not just not visible. The checkbox for the worksheet menu bar
doesn't appear on the customization drop-down list either. Any other
suggestions?


  #5   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 22,906
Default Missing worksheet menu bar Excel 2003

Alt + F11 to go to VBE.

CTRL + r to open Project Explorer.

Select your workbook/project and InsertModule

Paste this in and run it.

Sub Worksheet_Menu_Toggle()
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 Thu, 4 Dec 2008 04:33:12 -0800, Rick Solie
wrote:

Thanks for this, but no luck, Alt-T-C did nothing. I think the menu bar is
"disabled" and not just not visible. The checkbox for the worksheet menu bar
doesn't appear on the customization drop-down list either. Any other
suggestions?




  #6   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 3
Default Missing worksheet menu bar Excel 2003

Thanks. But in this instance the macro security setting is set to "High" (an
installation default, sorry to say), which means that VBA code can't run.
Since the Worksheet Menu Bar is missing, there's no way to set macro security
to "Medium" or "Low." Some sources recommend deleting any XLB files and
re-starting. I'll try this when next I have access to the user's computer.
Any comment?
--
Rick Solie


"Gord Dibben" wrote:

Alt + F11 to go to VBE.

CTRL + r to open Project Explorer.

Select your workbook/project and InsertModule

Paste this in and run it.

Sub Worksheet_Menu_Toggle()
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 Thu, 4 Dec 2008 04:33:12 -0800, Rick Solie
wrote:

Thanks for this, but no luck, Alt-T-C did nothing. I think the menu bar is
"disabled" and not just not visible. The checkbox for the worksheet menu bar
doesn't appear on the customization drop-down list either. Any other
suggestions?



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
excel menu bar missing Trevor Excel Discussion (Misc queries) 9 July 18th 07 10:24 PM
How do I find the Worksheet Menu bar in Excel if that is missing? wbez Excel Discussion (Misc queries) 4 March 15th 06 01:23 PM
missing menu in excel..help! Alicia Excel Discussion (Misc queries) 1 February 10th 06 03:05 AM
Excel menu bar missing Aelharrati Excel Discussion (Misc queries) 1 January 18th 06 08:50 PM
In Excel 2003, under the File menu the Permission link is missing dlrvh1984 Excel Worksheet Functions 2 September 21st 05 03:56 PM


All times are GMT +1. The time now is 09:04 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"