Sub GestionComboPPA(obj As Object) '(module de classe "Classe_ComboPPA")
'Gère l'action de chaque ComboBox dont le préfixe est "ComboPPA"
'Magic_Doctor
Dim x, o As Object
Application.ScreenUpdating = False
x = ExtractNumber(obj.Name) 'suffixe du ComboBox
Set o = ActiveSheet.OLEObjects("ComboPPA" & x).Object 'ComboBox
If o.ListIndex = 0 Then '1er item
ValComboPPA(x) = o.ListIndex 'mémorise le ListIndex
ElseIf o.ListIndex = 1 Then '2ème item
ValComboPPA(x) = o.ListIndex 'mémorise le ListIndex
End If
' Mémorise la valeur de la variable (Public) "ValComboPPA(x)" (pour ne pas avoir à la conserver sur la feuille)
ActiveWorkbook.Names.Add Name:="RememberValComboPPA" & x, RefersTo:=ValComboPPA(x), Visible:=False
Application.ScreenUpdating = True
End Sub