HI
I'm trying to use a menu on a datagridview, I have put a Contextmenutrip on the form. When I right click in a cell
I would like a menu to pop up. but nothing happens.
This is the code I have tried.
Private Sub CustomerPopMenu_ItemClicked(ByVal sender As Object, ByVal e As System.Windows.Forms.ToolStripItemClickedEventArgs)
Select Case e.ClickedItem.ToString()
Case "Edit"
MsgBox("Edit")
Case "Delete"
MsgBox("Delete")
End Select
End Sub