View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.programming
Tom Ogilvy Tom Ogilvy is offline
external usenet poster
 
Posts: 27,285
Default Right-click Combo Event

Seems like you would use the mousedown event and look at the button argument
to see if it is a right click.

You could then have the code position a commandbutton or label next to the
combobox.

--
Regards,
Tom Ogilvy

"John" wrote in message
...
Hi there,

I'd like to add a right click context menu ("Delete selected item") to a
combobox so that I can right click on an item and remove it from the
combobox's source range and the combobox itself.

I'm happy with the remove code, but would appreciate help with the right
click event.

Thanks in advance

John