The simple answer is no!. But, there is always another way with Access or VB.
You can create a command button and set its Transparent property to Yes. Then Place a label on top of the command button and make it the same shape as the command button - you have to play with it to make the caption work well. Set the color the way you want then go into the code behind the form:
Place this code:
Private sub lblCmdButton_MouseDown(Button as Integer, Shift as integer, X as single, Y as single)
Select Case Button
Case acLeftButton
Me.lblCmdButton.SpecialEffect = 2 'For the sunken effect
Case acRightButton
Me.lblCmdButton.SpecialEffect = 1 'To keep it raised
end select
end sub
Private sub lblCmdButton_MouseUp(Button as Integer, Shift as integer, X as single, Y as single)
Select Case Button
Case acLeftButton
Me.lblCmdButton.SpecialEffect = 1'For the sunken effect
Case acRightButton
Me.lblCmdButton.SpecialEffect = 1 'To keep it raised
end select
end sub
You have to play with it, but it does give you some control over how a button is presented. It ain't perfect, but what is?
Bob