Private Sub Workbook_Open()
Sheets("Feuil1").ListBox1.Clear
End Sub
Private Sub Workbook_Open()
Sheets("Feuil1").ComboBox1.ListIndex = -1
End Sub
Private Sub Workbook_Open()
Dim x As OLEObject
For Each x In Sheets("Feuil1").OLEObjects
If TypeOf x.Object Is MSForms.ComboBox Then
x.Object.ListIndex = -1
End If
Next x
End Sub