Change button colour?

  • Thread starter Thread starter TheRobsterUK
  • Start date Start date
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
 
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
 
Back
Top