Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 1,814
Default Right Click Pop Up Menus Disabled

My right click pop up menus are disabled. I installed a macro in my personal
workbook with an "Open" event so the menus are there now because of the
macro, but something obvioulsy happened to disable them in the first place.
Is there something I can do (other than my personal workbook macro) that I
can do to enable right click menus for the entore Excel application?

Thanks for your help
Steve
  #2   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 1,814
Default Right Click Pop Up Menus Disabled

I forgot to mention the problem only seems to be on the right click for the
cells. Other right click menus appear to work.

"Steve" wrote:

My right click pop up menus are disabled. I installed a macro in my personal
workbook with an "Open" event so the menus are there now because of the
macro, but something obvioulsy happened to disable them in the first place.
Is there something I can do (other than my personal workbook macro) that I
can do to enable right click menus for the entore Excel application?

Thanks for your help
Steve

  #3   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 2,718
Default Right Click Pop Up Menus Disabled

In the VBE open the Immediate window, paste this code in and run it:

Commandbars("Cell").Enabled = True

You might want to check the macro that set Enabled to false and inquire why
that was necessary and why it wasn't reset.

--
Jim
"Steve" wrote in message
...
|I forgot to mention the problem only seems to be on the right click for the
| cells. Other right click menus appear to work.
|
| "Steve" wrote:
|
| My right click pop up menus are disabled. I installed a macro in my
personal
| workbook with an "Open" event so the menus are there now because of the
| macro, but something obvioulsy happened to disable them in the first
place.
| Is there something I can do (other than my personal workbook macro) that
I
| can do to enable right click menus for the entore Excel application?
|
| Thanks for your help
| Steve


  #4   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 1,814
Default Right Click Pop Up Menus Disabled

I have that bit of code pasted into my personal workbook on an open event.
I've done it in the immediate window, but it does not enable the menus for
the entire application. And the menus are only enabled as long as that
workbook is open. if I close it and reopen, they are gone (if i take out the
personal workbook macro). is there a setting like in the Tools - Options that
I am missing that turns these off? I did change these settings (in
tools-options) for another workbook, maybe I clicked something that turned
off the pop up menus, too?

"Jim Rech" wrote:

In the VBE open the Immediate window, paste this code in and run it:

Commandbars("Cell").Enabled = True

You might want to check the macro that set Enabled to false and inquire why
that was necessary and why it wasn't reset.

--
Jim
"Steve" wrote in message
...
|I forgot to mention the problem only seems to be on the right click for the
| cells. Other right click menus appear to work.
|
| "Steve" wrote:
|
| My right click pop up menus are disabled. I installed a macro in my
personal
| workbook with an "Open" event so the menus are there now because of the
| macro, but something obvioulsy happened to disable them in the first
place.
| Is there something I can do (other than my personal workbook macro) that
I
| can do to enable right click menus for the entore Excel application?
|
| Thanks for your help
| Steve



  #5   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 1,814
Default Right Click Pop Up Menus Disabled

I figured it out... at least partly. The beforeclose event was not firing. I
put the same code into a macro triggered by a button click and it worked
fine. All menus work now without the macro in my personal macro workbook. But
now the question is, why didn't the beforeclose macro fire?

"Steve" wrote:

I have that bit of code pasted into my personal workbook on an open event.
I've done it in the immediate window, but it does not enable the menus for
the entire application. And the menus are only enabled as long as that
workbook is open. if I close it and reopen, they are gone (if i take out the
personal workbook macro). is there a setting like in the Tools - Options that
I am missing that turns these off? I did change these settings (in
tools-options) for another workbook, maybe I clicked something that turned
off the pop up menus, too?

"Jim Rech" wrote:

In the VBE open the Immediate window, paste this code in and run it:

Commandbars("Cell").Enabled = True

You might want to check the macro that set Enabled to false and inquire why
that was necessary and why it wasn't reset.

--
Jim
"Steve" wrote in message
...
|I forgot to mention the problem only seems to be on the right click for the
| cells. Other right click menus appear to work.
|
| "Steve" wrote:
|
| My right click pop up menus are disabled. I installed a macro in my
personal
| workbook with an "Open" event so the menus are there now because of the
| macro, but something obvioulsy happened to disable them in the first
place.
| Is there something I can do (other than my personal workbook macro) that
I
| can do to enable right click menus for the entore Excel application?
|
| Thanks for your help
| Steve





  #6   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 2,718
Default Right Click Pop Up Menus Disabled

why didn't the beforeclose macro fire?

Should. Unless events are turned off: Application.EnableEvents = False. Or
a typo in the sub name Sub Workbook_BeforeClose.

--
Jim
"Steve" wrote in message
...
|I figured it out... at least partly. The beforeclose event was not firing.
I
| put the same code into a macro triggered by a button click and it worked
| fine. All menus work now without the macro in my personal macro workbook.
But
| now the question is, why didn't the beforeclose macro fire?
|
| "Steve" wrote:
|
| I have that bit of code pasted into my personal workbook on an open
event.
| I've done it in the immediate window, but it does not enable the menus
for
| the entire application. And the menus are only enabled as long as that
| workbook is open. if I close it and reopen, they are gone (if i take out
the
| personal workbook macro). is there a setting like in the Tools - Options
that
| I am missing that turns these off? I did change these settings (in
| tools-options) for another workbook, maybe I clicked something that
turned
| off the pop up menus, too?
|
| "Jim Rech" wrote:
|
| In the VBE open the Immediate window, paste this code in and run it:
|
| Commandbars("Cell").Enabled = True
|
| You might want to check the macro that set Enabled to false and
inquire why
| that was necessary and why it wasn't reset.
|
| --
| Jim
| "Steve" wrote in message
| ...
| |I forgot to mention the problem only seems to be on the right click
for the
| | cells. Other right click menus appear to work.
| |
| | "Steve" wrote:
| |
| | My right click pop up menus are disabled. I installed a macro in
my
| personal
| | workbook with an "Open" event so the menus are there now because
of the
| | macro, but something obvioulsy happened to disable them in the
first
| place.
| | Is there something I can do (other than my personal workbook
macro) that
| I
| | can do to enable right click menus for the entore Excel
application?
| |
| | Thanks for your help
| | Steve
|
|
|


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
Menus Disabled When Opening 1+ Files TKS_Mark Excel Discussion (Misc queries) 1 October 2nd 07 08:25 PM
Right click menus guild0001 Excel Discussion (Misc queries) 4 July 6th 07 08:56 PM
Right-click menus elaine Excel Worksheet Functions 1 January 24th 06 07:26 PM
Lost Toolbar / Right click disabled Anthony Excel Discussion (Misc queries) 4 August 4th 05 01:17 PM
Right Click disabled for Chart only BoondockSaint via OfficeKB.com Charts and Charting in Excel 1 May 3rd 05 10:09 PM


All times are GMT +1. The time now is 09:46 PM.

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

About Us

"It's about Microsoft Excel"