Log in

View Full Version : Solved: Change Button color



majaro
01-07-2008, 01:35 PM
Is there a way to change the button color on an Access form from that drab grey to another color? Access 2000 . Thanks

DarkSprout
01-11-2008, 04:29 AM
Use a Label, with your custom colour


Private Sub Label01_Click()
[Label01].SpecialEffect = 2 ' Sunken
[Repaint]

'// Code Here

[Label01].SpecialEffect = 1 ' Raised
End Sub