Private Sub Worksheet_BeforeRightClick(ByVal Target As Range, Cancel As Boolean)
If Not Application.Intersect(Target, Range("J6:J10000")) Is Nothing Then
' If Cells(ActiveCell.Row, 11) <> "" Then
Application.EnableEvents = False
Application.ScreenUpdating = False
' Pass_admin.Show 'neutralisé pour le test
[a1].Select
Application.EnableEvents = True
CreateObject("wscript.shell").SendKeys "{Escape}"
Application.ScreenUpdating = True
Exit Sub
' End If
End If
End Sub