Vous devez être membre et vous identifier pour publier un article.
Les visiteurs peuvent toutefois commenter chaque article par une réponse.
Liste déroulante modifiable en VBA
Article publié le 27/10/2005 10:11:20Les contrôles
Nom de la ComboBox = Constructeur
Nom du CommandButton "Valider Choix" = OK
Nom du CommandButton "Annuler" = Annuler
Le code
Code lançant l'ouverture de la boîte de dialogue
Code VisualBASIC ou VBA ou VBS (3 lignes)
Sub AfficheListeDeroulanteModifiable() ListeDeroulanteModifiable.Show End Sub
Code d'initialisation du formulaire
Code VisualBASIC ou VBA ou VBS (3 lignes)
Private Sub UserForm_Initialize() Me.Constructeur.RowSource = "Feuil1!A1:A" & Sheets("Feuil1").Cells(1, 1).End(xlDown).Row End Sub
Code d'activation du formulaire
Code VisualBASIC ou VBA ou VBS (3 lignes)
Private Sub UserForm_Activate() Me.Constructeur.ListIndex = -1 End Sub
Code des boutons
1 / Bouton OK
Code VisualBASIC ou VBA ou VBS (13 lignes)
Private Sub OK_Click() Me.Hide If Me.Constructeur.ListIndex = -1 Then Sheets("Feuil1").Cells(1, 1).End(xlDown).Offset(1, 0).Value = Me.Constructeur.Value ' Tri de la plage de données suite à l'ajout d'un élément Sheets("Feuil1").Range([A1], [A1].End(xlDown)).Select Selection.Sort Key1:=Range("A1"), Order1:=xlAscending, Header:=xlGuess, _ OrderCustom:=1, MatchCase:=False, Orientation:=xlTopToBottom Else End If ' Mise en place de la valeur choisie en D2 Sheets("Feuil1").Cells(2, 4).Value = Me.Constructeur.Value End Sub
2 / Bouton Annuler
Code VisualBASIC ou VBA ou VBS (3 lignes)
Private Sub Annuler_Click() ListeDeroulanteModifiable.Hide End Sub
Un article de sysprep
Source : ericrenaud.free.fr
English translation
You have asked to visit this site in English. For now, only the interface is translated, but not all the content yet.If you want to help me in translations, your contribution is welcome. All you need to do is register on the site, and send me a message asking me to add you to the group of translators, which will give you the opportunity to translate the pages you want. A link at the bottom of each translated page indicates that you are the translator, and has a link to your profile.
Thank you in advance.
Document created the 13/09/2004, last modified the 26/10/2018
Source of the printed document:https://www.gaudry.be/en/ast-rf-251.html
The infobrol is a personal site whose content is my sole responsibility. The text is available under CreativeCommons license (BY-NC-SA). More info on the terms of use and the author.