A
albert
Guest
bonjour à tous, bonjour forum,
j'ai tenté d'associer un code de récupération de sélection multiple dans listbox, à un bouton...
http://xlbysteph.free.fr/aideinformatique/userform.htm
tous mes essais sont restés vains... (peut-être que le code n'est pas placé au bon endroit ???)
CODE :
Private Sub ListBox1_GotFocus()
ListBox1.MultiSelect = fmMultiSelectExtended
range("D1", cells(ListBox1.ListCount, 4)).Clear
End Sub
Private Sub ListBox1_LostFocus()
j = 1
with ListBox1
For i = 0 To .ListCount - 1
If .Selected(i) = True Then
cells(j, 4) = .List(i)
.Selected(i) = False
j = j + 1
End If
Next
End with
End Sub
.... merci d'avance
albert
j'ai tenté d'associer un code de récupération de sélection multiple dans listbox, à un bouton...
http://xlbysteph.free.fr/aideinformatique/userform.htm
tous mes essais sont restés vains... (peut-être que le code n'est pas placé au bon endroit ???)
CODE :
Private Sub ListBox1_GotFocus()
ListBox1.MultiSelect = fmMultiSelectExtended
range("D1", cells(ListBox1.ListCount, 4)).Clear
End Sub
Private Sub ListBox1_LostFocus()
j = 1
with ListBox1
For i = 0 To .ListCount - 1
If .Selected(i) = True Then
cells(j, 4) = .List(i)
.Selected(i) = False
j = j + 1
End If
Next
End with
End Sub
.... merci d'avance
albert