What's the RMB menu inside a cell?

D

David Thielen

Hi;

It looks like you have to edit each Word context menu you want to be in for
a RMB pop-up menu. Any idea what the name of the menu when inside a table
cell is?

Also, the one when doing a RMB on a field?

And is there a list of all the menus anywhere?
 
P

Peter Huang [MSFT]

Hi

Based on my researching there is no such a list.
But I think we may simple dump the list withe macro below.

Sub Test()
Dim fso As New FileSystemObject
Dim ts As TextStream
Set ts = fso.CreateTextFile("C:\cmdslist.txt", True, True)
Dim cb As CommandBar
Dim cbb As CommandBarControl
For Each cb In Application.CommandBars
Debug.Print cb.Name
ts.WriteLine (cb.Name)
For Each cbb In cb.Controls
Debug.Print " " & cbb.Caption
ts.WriteLine " " & cbb.Caption
Next
Next
ts.Close
End Sub

Best regards,

Peter Huang
Microsoft Online Partner Support

Get Secure! - www.microsoft.com/security
This posting is provided "AS IS" with no warranties, and confers no rights.
 
D

David Thielen

Hi;

I was afraid that that was the answer. My worry is I miss a pop-up I should
be adding to. Oh well...
 
D

David Thielen

ps - Could you ask the Word group if they would be willing to publish the
list of menus and what each is for? They have to have such a list for
internal development.
 
P

Peter Huang [MSFT]

Hi

I understand your concern.
Commonly I think the document will not be published, due to as the word
version upgrate some may change.
If you do want that, I think you would better contact MSPSS to try
requesting such a document as the recommended process.
http://support.microsoft.com

Thanks for your understanding!

Best regards,

Peter Huang
Microsoft Online Partner Support

Get Secure! - www.microsoft.com/security
This posting is provided "AS IS" with no warranties, and confers no rights.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top