'*******************************************************
' fonction palette couleur dialogue perso
'version 1.2
'date version 11/06/2016
'auteur patricktoulon sur developpez.com
'affichage couleur personnalisable ou couleur standard
'*********************************************
Function my_color(Optional X As Variant = "Getcouleur", Optional perso As String = 0)
Dim lcolor As Long, x1&, x2&, x3&
If perso > 0 Then x1 = 255: x2 = 10: x3 = 5
If Application.Dialogs(xlDialogEditColor).Show(1, x1, x2, x3) = True Then
my_color = ActiveWorkbook.Colors(1)
End If...