I have a combox with constructcontextualmenu
base.AddMenu(New MenuItem("Edit Relationship"))
Return True
and the contextualmenuaction
if hitItem <> Nil then
select case hititem.Text
case "Edit Relationship"
RelativeMatchWindow.show
end select
end if
However rightclicking on the combo box does not trigger the constructcontextualMenu. I’ve been able to get this to work fine for listboxes but it does not seem to work for my combo box. Ideas?