Neil thanks for the suggestion. I got the ContextMenu to work after looking at some of your other older posts. In addition to setting the ContextMenu value to False I also had to alter the Mousedown behavior to detect the right-click button and send the clicked coordinates to the ContextMenu of the tool. So the minimum code required to get the behavior I wanted is:Private Function UIToolControl1_ContextMenu(ByVal x As Long, ByVal y As Long) As Boolean
UIToolControl1_ContextMenu = False
End Function
Private Sub UIToolControl1_MouseDown(ByVal button As Long, ByVal shift As Long, ByVal x As Long, ByVal y As Long)
If button = 2 Then
UIToolControl1_ContextMenu x, y
ElseIf button = 1 Then
' Whatever the tool does
End If
End Sub