Depends when do you want the color to be changed?
If you just want it one time, go to the properties of the checkbox and change the back color value to &H005C3616&.
&H005C3616&
The segments of the code are arranged as BGR instead of RGB, and in hexadecimal.
To convert decimal to hexadecimal, you can use a formula in Excel, DEC2HEX.
RGB(22, 54, 92)
Type in any cell -> =DEC2HEX(92)
You would get -> 5C
&H005C
Type in any cell -> =DEC2HEX(54)
You would get -> 36
&H005C36
Type in any cell -> =DEC2HEX(22)
You would get -> 16
&H005C3616&
And paste/type that into the back color property.
Bookmarks