Sub Load_Listbox1()
Form1.ListBox1.Clear
Form1.ListBox1.ColumnCount = 5
Form1.ListBox1.ColumnWidths = "90;30;235;60;50,25"
With Form1.ListBox1
.ColumnCount = 5
For i = 1 To Feuil1.Range("a10000").End(xlUp).Row
If Form1.ComboBox1 = Feuil1.Cells(i, 1) And Form1.ComboBox2 = Feuil1.Cells(i, 2) Then
.AddItem
y = .ListCount - 1 ' dernier indice (créé par .Additem)
.List(y, 0) = Feuil1.Cells(i, 1)
.List(y, 1) = Feuil1.Cells(i, 2)
.List(y, 2) = Feuil1.Cells(i, 3)
.List(y, 3) = Feuil1.Cells(i, 4)
.List(y, 4) = Feuil1.Cells(i, 5)
.List(y, 5) = i 'Stockage du numéro de ligne pour fonction suppression
Else
End If
Next i
End With
End Sub