word 2007 no right click menu customization

P

philosophy62

Just installed office 2007 and I was blown away that MS has removed
the ability to customize context menus or short cut menus. What
the.... Come on. Put the feature back in! If anyone knows of a 3rd
party program that will permit customization of the context menus
please post a link.
 
S

steven

You can customize them using VBA.

Please post all follow-up questions to the newsgroup. Requests for
assistance by email cannot be acknowledged.

~~~~~~~~~~~~~~~
Beth Melton
Microsoft Office MVP

Coauthor of Word 2007 Inside Out:http://www.microsoft.com/MSPress/books/9801.aspx#AboutTheBook

Word FAQ:http://mvps.org/word
TechTrax eZine:http://mousetrax.com/techtrax/
MVP FAQ site:http://mvps.org/

Hi,
Is this as simple to do as the very simple method in office 2003? Do
you have a link to some basic instructions of how to do this? Thanx.
 
B

Beth Melton

steven said:
Hi,
Is this as simple to do as the very simple method in office 2003? Do
you have a link to some basic instructions of how to do this? Thanx.

The simple method of customizing menus using VBA in previous versions? Yes.
If you are asking if it is as simple as drag/drop. No.

I don't know of any sample code out there but basically you need to find the
control ID for the command you want to add and then use
Application.CommandBars("<CommandBarName>").Controls.Add method to add it.

You may want to check in one of the Word VBA groups to see if anyone has
some sample code for 1) finding the control ID and 2) how to add it the
command.

Please post all follow-up questions to the newsgroup. Requests for
assistance by email cannot be acknowledged.

~~~~~~~~~~~~~~~
Beth Melton
Microsoft Office MVP

Coauthor of Word 2007 Inside Out:
http://www.microsoft.com/MSPress/books/9801.aspx#AboutTheBook

Word FAQ: http://mvps.org/word
TechTrax eZine: http://mousetrax.com/techtrax/
MVP FAQ site: http://mvps.org/
 
Top