Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 9
Default How to keep showing full menu?

Whenever I open excel, it shows only recently used menus first.
I tried to chenge the option in right click customise and
unchecking the box in front of "Menus show recently used commands
first and " show full menu after a short delay" but it works only for
the current session. Once I close and reopen excel, it again displays
annoying short menus.

Is there a way to keep showing full menus permanantly whenever I open
the excel?

Thanks,
Ketan
  #2   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 102
Default How to keep showing full menu?

ketan wrote:

Whenever I open excel, it shows only recently used menus first.
I tried to chenge the option in right click customise and
unchecking the box in front of "Menus show recently used commands
first and " show full menu after a short delay" but it works only for
the current session. Once I close and reopen excel, it again displays
annoying short menus.

Is there a way to keep showing full menus permanantly whenever I open
the excel?

Thanks,
Ketan


Are you working in some kind of Terminal or Citrix environment???
Or perhaps you don't have sufficient rights???
Or some app that prevents changes to the registry? I had to uninstall
AdWatch for similar reasons.
Anyway what you describe (customise, unchecking that box) *is* the
right way to do it!

--
Amedee Van Gasse using XanaNews 1.16.3.1
If it has an "X" in the name, it must be Linux?
Please don't thank me in advance. Thank me afterwards if it works or
hit me in the face if it doesn't. ;-)
  #3   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 2,824
Default How to keep showing full menu?

If you can't get sufficient rights to update the registry, maybe you could just
record a macro while you set this.

Name your macro auto_open.
Then save that workbook in your XLStart folder.
Add this line right before the End Sub:
thisworkbook.close savechanges:=false

Then when you open excel, this workbook will open, the setting will be changed,
and the workbook will close.

Then try to find out what else you can't change and see if your IT people can
help.


ketan wrote:

Whenever I open excel, it shows only recently used menus first.
I tried to chenge the option in right click customise and
unchecking the box in front of "Menus show recently used commands
first and " show full menu after a short delay" but it works only for
the current session. Once I close and reopen excel, it again displays
annoying short menus.

Is there a way to keep showing full menus permanantly whenever I open
the excel?

Thanks,
Ketan


--

Dave Peterson

  #4   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 102
Default How to keep showing full menu?

Dave Peterson wrote:

If you can't get sufficient rights to update the registry, maybe you
could just record a macro while you set this.

Name your macro auto_open.
Then save that workbook in your XLStart folder.
Add this line right before the End Sub:
thisworkbook.close savechanges:=false

Then when you open excel, this workbook will open, the setting will
be changed, and the workbook will close.

Then try to find out what else you can't change and see if your IT
people can help.


Dave,
smart workaround!
I'll remember that, I often envounter clients with all their rights
stripped away.

--
Amedee Van Gasse using XanaNews 1.16.3.1
If it has an "X" in the name, it must be Linux?
  #5   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 9
Default How to keep showing full menu?

Sorry, Iwas on leave so could not reply.
I have full Administrators rights.
We have win2000 with office 2000. I can do all the changes required to
the registry. In fact I have made many changes for some other purpose.

Dave,
Recording a macro during I set it does not record anything. It shows
just the sub Macro1() and End sub line.

Is there any other way around?

Regards,


"Amedee Van Gasse" wrote in message ...
Dave Peterson wrote:

If you can't get sufficient rights to update the registry, maybe you
could just record a macro while you set this.

Name your macro auto_open.
Then save that workbook in your XLStart folder.
Add this line right before the End Sub:
thisworkbook.close savechanges:=false

Then when you open excel, this workbook will open, the setting will
be changed, and the workbook will close.

Then try to find out what else you can't change and see if your IT
people can help.


Dave,
smart workaround!
I'll remember that, I often envounter clients with all their rights
stripped away.



  #6   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 2,824
Default How to keep showing full menu?

Darn, I didn't actually test this!

But this seemed to work ok for me:

Option Explicit
Sub auto_open()
Application.CommandBars.AdaptiveMenus = False
ThisWorkbook.Close savechanges:=False
End Sub

(in a general module)

ketan wrote:

Sorry, Iwas on leave so could not reply.
I have full Administrators rights.
We have win2000 with office 2000. I can do all the changes required to
the registry. In fact I have made many changes for some other purpose.

Dave,
Recording a macro during I set it does not record anything. It shows
just the sub Macro1() and End sub line.

Is there any other way around?

Regards,

"Amedee Van Gasse" wrote in message ...
Dave Peterson wrote:

If you can't get sufficient rights to update the registry, maybe you
could just record a macro while you set this.

Name your macro auto_open.
Then save that workbook in your XLStart folder.
Add this line right before the End Sub:
thisworkbook.close savechanges:=false

Then when you open excel, this workbook will open, the setting will
be changed, and the workbook will close.

Then try to find out what else you can't change and see if your IT
people can help.


Dave,
smart workaround!
I'll remember that, I often envounter clients with all their rights
stripped away.


--

Dave Peterson

  #7   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 9
Default How to keep showing full menu?

Dave,
Thanks. It worked.
I put this in personal workbook.
Thanks and regards,
Ketan


Dave Peterson wrote in message ...
Darn, I didn't actually test this!

But this seemed to work ok for me:

Option Explicit
Sub auto_open()
Application.CommandBars.AdaptiveMenus = False
ThisWorkbook.Close savechanges:=False
End Sub

(in a general module)

  #8   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 2,824
Default How to keep showing full menu?

Glad it worked for you, but who'da guessed that the macro wouldn't record?
(well, not me!)

ketan wrote:

Dave,
Thanks. It worked.
I put this in personal workbook.
Thanks and regards,
Ketan

Dave Peterson wrote in message ...
Darn, I didn't actually test this!

But this seemed to work ok for me:

Option Explicit
Sub auto_open()
Application.CommandBars.AdaptiveMenus = False
ThisWorkbook.Close savechanges:=False
End Sub

(in a general module)


--

Dave Peterson

  #9   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 9
Default How to keep showing full menu?

Thats right. Also I would have never imagine such name (Adaptive menu)
for such an action (Short or full menu). But then thats where the NG
comes in picture.

Thanks and Have a nice day,
Bye,
Ketan


Dave Peterson wrote in message ...
Glad it worked for you, but who'da guessed that the macro wouldn't record?
(well, not me!)

ketan wrote:

Dave,
Thanks. It worked.
I put this in personal workbook.
Thanks and regards,
Ketan

Dave Peterson wrote in message ...
Darn, I didn't actually test this!

But this seemed to work ok for me:

Option Explicit
Sub auto_open()
Application.CommandBars.AdaptiveMenus = False
ThisWorkbook.Close savechanges:=False
End Sub

(in a general module)

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 to get the full list of drop down menu Carol @ Prison[_2_] Excel Discussion (Misc queries) 1 November 9th 09 05:41 PM
Cells not showing full text Jorge E. Jaramillo Excel Discussion (Misc queries) 6 October 5th 09 10:20 PM
Restrict showing full range of Y axis LisaJD Charts and Charting in Excel 2 July 12th 07 08:54 AM
Showing full pull-down list DianeMcP Excel Worksheet Functions 5 April 28th 07 12:14 AM
Text in cell not showing in full text in cell in exces Excel Discussion (Misc queries) 2 December 23rd 04 09:13 AM


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

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"