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
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top