Sub Init()
Dim tablo(1 To 8, 1 To 3)
For i = 1 To 8
tablo(i, 1) = Cells(i + 5, "D")
tablo(i, 2) = Cells(i + 5, "F")
tablo(i, 3) = Cells(i + 5, "H")
Next i
With UserForm1.ListBox1
.ColumnCount = 3
.ColumnWidths = "80"
.List = tablo
End With
UserForm1.Show
End Sub