View Single Post
  #5   Report Post  
Posted to microsoft.public.excel.programming
Jos Vens[_2_] Jos Vens[_2_] is offline
external usenet poster
 
Posts: 134
Default Menu ID of Shortmenu (Right click)

Thanks everyone!
Jos


"Jim Thomlinson" schreef in
bericht ...
There are probably 3 menu's that you are looking for...

Cell, Row and Column

Dim cbrCellMenu As CommandBar
Dim cbrRowMenu As CommandBar
Dim cbrColumnMenu As CommandBar

Set cbrCellMenu = Application.CommandBars("Cell")
Set cbrRowMenu = Application.CommandBars("Row")
Set cbrRowMenu = Application.CommandBars("Column")

--
HTH...

Jim Thomlinson


"Jos Vens" wrote:

Hi,

How can I determin the menu-id of the right-click menu. I'd like to
change
the copy and paste items of it.

Thanks
Jos Vens