Private Sub txtNomEtPrenom_Change()
Dim i As Integer
Dim NbLigne As Integer
Dim NomEtPrenomCherche As String
Me.LstIntervenants.Clear
Range("G3:G1000").Interior.ColorIndex = 0
Range("G3:G1000").Font.ColorIndex = 1
Range("G3:G1000").Font.Bold = False
NbLigne = Feuil2.Range("C10000").End(xlUp).Row
NomEtPrenomCherche = Me.txtNomEtPrenom.Value
If Me.txtNomEtPrenom <> "" Then
For i = 3 To NbLigne
If Feuil2.Cells(i, 2) Like "*" & UCase(Me.txtNomEtPrenom.Value) & "*" Then
Cells(i, 2).Interior.Color = RGB(100, 100, 100)
Cells(i, 2).Font.Color = RGB(255, 0, 0)
Cells(i, 2).Font.Bold = True
Me.LstIntervenants.AddItem Feuil2.Cells(i, 2)
End If
Next i
End If
End Sub