Open a new Standard Module do a new Procedure and type it in exactly like
below, except with your function name instead of fMagenta so it could look
like:
Public Function CorpColor()
CorpColor = placeholder
End Function
Now go back to the form and use the color picker to get the color you want.
Put the number of that color, from your form to the placeholder, so now it
may look something like:
Public Function CorpColor()
CorpColor = 8388608
End Function
except with your color number. You can also use the RGB values from the
color picker Like:
Public Function CorpColor()
CorpColor = RGB(0,0,128)
End Function
But that reduces you to 16 bit color values.
>> Stay informed about: Adding a colour permanently to the MS Office colour palette