how use a context menu?
In the form i put a context menu item and copy , paste was in.
This is my code to bring up a popup menu ...
Private Sub LstAdmin_MouseDown(ByVal sender As Object, ByVal e As System.Windows.Forms.MouseEventArgs) Handles lstAdmin.MouseDown
If e.Button = MouseButtons.Right Then
Me.ContextMenu1.Show(Me, PointToClient(Cursor.Current.Position))
End If
End Sub