Private Sub Cmd_ajoutarticlechantier_Click()
Dim a(), nlig&, ncol%, b(), i&, j%
a = ListBox2.List
nlig = UBound(a)
ncol = UBound(a, 2)
ReDim b(nlig + 1, ncol)
'---transfert des données de a dans b---
For i = 0 To nlig
For j = 0 To ncol
b(i, j) = a(i, j)
Next j, i
'---ajout de la ligne sélectionnée--
i = ListBox1.ListIndex
For j = 0 To ncol
b(nlig + 1, j) = ListBox1.List(i, j)
Next
'---transfert dans ListBox2---
ListBox2.List = b
End Sub