Private Sub ListBox1_Click()
With Me
With .ListBox1
Me.TxtB_1 = .List(.ListIndex, 0)
Me.TxtB_2 = .List(.ListIndex, 1)
Me.TxtB_3 = .List(.ListIndex, 2)
Me.TxtB_4 = .List(.ListIndex, 3)
Me.TxtB_5 = .List(.ListIndex, 4)
Me.TxtB_6 = .List(.ListIndex, 5)
Me.TxtB_7 = .List(.ListIndex, 6)
Me.TxtB_8 = .List(.ListIndex, 7)
Me.TxtB_9 = .List(.ListIndex, 8)
Me.TxtB_10 = .List(.ListIndex, 9) '<--- Ici
End With
End With
End Sub