Private Sub TextBox1_Change()
derLigne = Range("A" & Rows.Count).End(xlUp).Row
ListBox1.Clear
If TextBox1 <> "" Then
For ligne = 17 To derLigne
If Mid(Cells(ligne, 1).Value, 1) Like "*" & TextBox1 & "*" Then
ListBox1.AddItem
ListBox1.List(n, 0) = Cells(ligne, 1)
ListBox1.List(n, 1) = Cells(ligne, 4) '
n = n + 1
End If
Next
End If
ListBox1.Visible = True
End Sub