Private Sub TextBox_rech_mot_Change()
ComboBox_rech_fr.Value = Null
With Sheets("Fournisseurs")
i = 3
ListBox_rech_res.Clear
If TextBox_rech_mot <> "" Then
For ligne = 4 To 20000
If Cells(ligne, 2) Like "*" & TextBox_rech_mot & "*" Then
ListBox_rech_res.AddItem Cells(ligne, 2)
End If
Next
End If
End With
End Sub