W
Weste
I have some ActiveX controls (combo box, text box, etc) in my Word doc. If
the doc is in design mode and I right click on one of the ActiveX controls a
menu pops up with Cut, Copy, Paste, etc. What is the name of this menu? I
am trying to get to it programmatically so I can disable it. I am using the
code below to disable some other menus.
For each cmdbar in CommandBars
If cmdbar.Name = "Visual Basic" then
cmdbar.Enabled = Fasle
.... add'l code
End If
Next
Thanks!
the doc is in design mode and I right click on one of the ActiveX controls a
menu pops up with Cut, Copy, Paste, etc. What is the name of this menu? I
am trying to get to it programmatically so I can disable it. I am using the
code below to disable some other menus.
For each cmdbar in CommandBars
If cmdbar.Name = "Visual Basic" then
cmdbar.Enabled = Fasle
.... add'l code
End If
Next
Thanks!