[vba/excel] recuperer selection listbox
Fermé
antic80
Messages postés
4785
Date d'inscription
lundi 30 mai 2005
Statut
Contributeur
Dernière intervention
9 septembre 2009
-
29 nov. 2008 à 11:11
antic80 Messages postés 4785 Date d'inscription lundi 30 mai 2005 Statut Contributeur Dernière intervention 9 septembre 2009 - 1 déc. 2008 à 19:29
antic80 Messages postés 4785 Date d'inscription lundi 30 mai 2005 Statut Contributeur Dernière intervention 9 septembre 2009 - 1 déc. 2008 à 19:29
A voir également:
- Vba listbox selection
- L'indice n'appartient pas à la sélection vba - Forum VB / VBA
- Erreur d'execution 9, l'indice n'appartient pas à la sélection ✓ - Forum Programmation
- L'indice n'appartient pas à la selection ✓ - Forum VB / VBA
- Erreur '9' l'indice n'appartient pas à la sélection - Forum VB / VBA
- Outil selection illustrator ne fonctionne pas ✓ - Forum Illustrator
9 réponses
lermite222
Messages postés
8724
Date d'inscription
dimanche 8 avril 2007
Statut
Contributeur
Dernière intervention
22 janvier 2020
1 190
29 nov. 2008 à 11:38
29 nov. 2008 à 11:38
Bonjour,
Un exemple...
A+
Un exemple...
Function ConcaTList() As String Dim Txt As String For i = 1 To ListBox1.ListCount If ListBox1.Selected(i) = True Then Txt = Txt & ListBox1.List(i) & "/" End If Next i ConcaTList = Txt End Function
A+