TextBox vers ListBox VBA
Résolu/Fermé
stef.roos
Messages postés
73
Date d'inscription
vendredi 21 mars 2008
Statut
Membre
Dernière intervention
20 décembre 2012
-
14 juil. 2010 à 18:18
stef.roos Messages postés 73 Date d'inscription vendredi 21 mars 2008 Statut Membre Dernière intervention 20 décembre 2012 - 14 juil. 2010 à 19:14
stef.roos Messages postés 73 Date d'inscription vendredi 21 mars 2008 Statut Membre Dernière intervention 20 décembre 2012 - 14 juil. 2010 à 19:14
A voir également:
- TextBox vers ListBox VBA
- Windows 7 vers windows 10 - Accueil - Mise à jour
- Clavier qwerty vers azerty - Guide
- Votre envoi est réacheminé vers son site de distribution - Forum Consommation & Internet
- Vba ouvrir un fichier excel avec chemin ✓ - Forum VB / VBA
- Vers quelle adresse web renvoie ce lien - Guide
1 réponse
stef.roos
Messages postés
73
Date d'inscription
vendredi 21 mars 2008
Statut
Membre
Dernière intervention
20 décembre 2012
1
14 juil. 2010 à 19:14
14 juil. 2010 à 19:14
Laisser tomber j'ai trouvé.
Private Sub Command1_Click ()
ListBox1.AddItem
ListBox1.List(Listbox1.ListCount -1,0) = TextBox1.value
ListBox1.List(Listbox1.ListCount -1,1) = TextBox2.value
End Sub
Private Sub Command1_Click ()
ListBox1.AddItem
ListBox1.List(Listbox1.ListCount -1,0) = TextBox1.value
ListBox1.List(Listbox1.ListCount -1,1) = TextBox2.value
End Sub