Exporter des donnée vers userform
Résolu/Fermé
abdellah_tadjine
Messages postés
191
Date d'inscription
jeudi 30 novembre 2006
Statut
Membre
Dernière intervention
5 janvier 2022
-
23 févr. 2020 à 14:05
jordane45 Messages postés 38289 Date d'inscription mercredi 22 octobre 2003 Statut Modérateur Dernière intervention 17 novembre 2024 - 23 févr. 2020 à 16:24
jordane45 Messages postés 38289 Date d'inscription mercredi 22 octobre 2003 Statut Modérateur Dernière intervention 17 novembre 2024 - 23 févr. 2020 à 16:24
A voir également:
- Exporter des donnée vers userform
- Comment exporter les photos de google photo vers l'ordinateur - Guide
- Chrome exporter favoris - Guide
- Windows 7 vers windows 10 - Accueil - Mise à jour
- Exporter favoris firefox - Guide
- Exporter conversation sms android - Guide
1 réponse
jordane45
Messages postés
38289
Date d'inscription
mercredi 22 octobre 2003
Statut
Modérateur
Dernière intervention
17 novembre 2024
4 703
23 févr. 2020 à 16:24
23 févr. 2020 à 16:24
Bonjour,
par exemple (moi j'ai utilisé un bouton que j'ai mis dans ton userform1 )
par exemple (moi j'ai utilisé un bouton que j'ai mis dans ton userform1 )
Private Sub CommandButton2_Click() Load UserForm2 'on charge le userform en mémoire If ListBox1.ListIndex > -1 And ListBox1.Selected(ListBox1.ListIndex) Then '***** Use the data - in my example only columns 2 & 3 are used UserForm2.TextBox1.Value = ListBox1.List(ListBox1.ListIndex, 0) UserForm2.TextBox2.Value = ListBox1.List(ListBox1.ListIndex, 1) 'etc... End If UserForm2.Show ' on affiche le userform End Sub