Bonjour
pour faire ce que tu demandes
Private Sub ListBox1_Click()
Me.TextBox1 = Me.ListBox1.List(Me.ListBox1.ListIndex, 0)
Me.TextBox2 = Me.ListBox1.List(Me.ListBox1.ListIndex, 1)
Me.TextBox3 = Me.ListBox1.List(Me.ListBox1.ListIndex, 2)
Me.TextBox4 = Me.ListBox1.List(Me.ListBox1.ListIndex, 3)
End Sub
Sinon dans ton code
Private Sub UserForm_Initialize()
Dim i As Byte
Dim WS As Worksheet
Set WS = ThisWorkbook.Worksheets('Feuil1')
For i = 0 To 5
With Me.ListBox1
.ColumnCount = 4
.ColumnWidths = '40;40;40;40'
.AddItem WS.Range('A' & i + 1)
.Column(1, i) = WS.Range('B' & i + 1)
.Column(2, i) = WS.Range('C' & i + 1)
.Column(3, i) = WS.Range('D' & i + 1)
End With
Next
End Sub
tu peux modifier car 4 fois tu lui redis de mettre 4 colonnes avec telle et telle dimensions
essaies
Private Sub UserForm_Initialize()
Dim i As Byte
Dim WS As Worksheet
Set WS = ThisWorkbook.Worksheets('Feuil1')
With Me.ListBox1
.ColumnCount = 4
.ColumnWidths = '40;40;40;40'
For i = 0 To 5
.AddItem WS.Range('A' & i + 1)
.Column(1, i) = WS.Range('B' & i + 1)
.Column(2, i) = WS.Range('C' & i + 1)
.Column(3, i) = WS.Range('D' & i + 1)
End With
Next
End Sub
Bon courage