Change button colour?

T

TheRobsterUK

Hi,

Is it possible to change the colour of a Forms button? (Not the font
the colour of the actual button itself). I want something other than
grey button!

Cheers
-Ro
 
D

Dave Peterson

You could also use the commandbutton from the Control Toolbox toolbar.

right click on it and choose properties and look for backcolor.

Then double click on it and you'll see how it executes its code. You can just
call your existing macro from there, like:

Option Explicit
Private Sub CommandButton1_Click()
Call yourMacroNameHere
End Sub
 
Top