Bonjour à tous,
Suite à un premier post dans lequel je demandai s'il était possible d'afficher dans la textbox (ou autre outil) une "synthèse" des sélections des différentes combobox ex :
si je configure : "1, Antarro, N, Tip-On, 400, 30kg, Gris, Portalet",
s'affiche alors automatiquement les 3 infos suivantes "AntarroN400".
J'ai reçu la réponse suivante :
Private Sub CommandButton1_Click()
Dim LI As Integer
Dim COL As Byte
LI = OF.Cells(Application.Rows.Count, "B").End(xlUp).Row
OF.Cells(LI, "C").Value = Me.ComboBox7.Value
For COL = 4 To 9
Cells(LI, COL).Value = Me.Controls("Combobox" & COL - 2).Value
Next COL
Me.TextBox1.Value = Me.ComboBox1.Value & Me.ComboBox2.Value & Me.ComboBox4.Value <--- Ici
Unload Me
End Sub
Malheureusement cela ne fonctionne pas. Une idée ?
Merci d'avance