Tiens regarde l'exemple de ce que j'ai cree, la fin bloque..grrrrrr
Sub Barre_d_outil()
Set Choix_Profil_fonds = CommandBars.Add(Name:="Choix du profil", Position:=msoBarFloating, Temporary:=True)
Choix_Profil_fonds.Visible = True
Set Listeprofil = Choix_Profil_fonds.Controls.Add(Type:=msoControlComboBox)
With Listeprofil
.AddItem "Profil Dynamique", 1
.AddItem "Profil Equilibre", 2
.AddItem "Profil Défensif", 3
.DropDownWidth = 180
.ListIndex = 0
End With
Listeprofil.Caption = "Liste Profil"
End Sub
Private Sub Listeprofil_change()
Select Case Listeprofil.ListIndex
Case Is = 1
ProfilDynamique
End Select
End Sub
Private Sub ProfilDynamique()
Sheets("SELECT DYN-ALLOC").Select
Cells(1, 1).Select
End Sub