S
Sean
Hi,
I have managed to add an control to my right click menu. The problem is that
when have something on my clipboard a right click gives me a different menu.
Any tips on how to add an item to that menu would be appreciated.
I am using the following code to add an item to the regular right click
menu.
Option Explicit
Public RtClkMenu As CommandBarButton
Sub CreateRtClkMenu()
Set RtClkMenu = CommandBars("Cell").Controls.Add _
(Type:=msoControlButton, before:=5)
With RtClkMenu
.Caption = "Your button Title"
.FaceId = 321
.OnAction = "Sub to be called"
.BeginGroup = True
End With
End Sub
I have tried:
Set RtClkMenu = CommandBars("Paste Special Dropdown").Controls.Add _
(Type:=msoControlButton, before:=5)
But have no idea where this is being added to, it is not added to my right
click on a cell when there is something on the clipboard.
Command bar 117 is called Clipboard but is listed as a toolbar and not a
shortcut.
Any assistance will be appreciated.
Thanks.
Sean
I have managed to add an control to my right click menu. The problem is that
when have something on my clipboard a right click gives me a different menu.
Any tips on how to add an item to that menu would be appreciated.
I am using the following code to add an item to the regular right click
menu.
Option Explicit
Public RtClkMenu As CommandBarButton
Sub CreateRtClkMenu()
Set RtClkMenu = CommandBars("Cell").Controls.Add _
(Type:=msoControlButton, before:=5)
With RtClkMenu
.Caption = "Your button Title"
.FaceId = 321
.OnAction = "Sub to be called"
.BeginGroup = True
End With
End Sub
I have tried:
Set RtClkMenu = CommandBars("Paste Special Dropdown").Controls.Add _
(Type:=msoControlButton, before:=5)
But have no idea where this is being added to, it is not added to my right
click on a cell when there is something on the clipboard.
Command bar 117 is called Clipboard but is listed as a toolbar and not a
shortcut.
Any assistance will be appreciated.
Thanks.
Sean