Option Group controls have backcolor?

jal

Registered User.
Local time
Yesterday, 16:52
Joined
Mar 30, 2007
Messages
1,709
The form is green. I set the option group control to be brown.

It's brown in the designer, but green when I run the form.
 
When changing the the Back color of a Control in Design view, the BackStyle property should automatically change to Normal. If the Back Color is changed via VBA code then you will need to also change the BackStyle property. 0 is for Transparent and 1 is For Normal (Solid):

Me.MyOptionGroupCtrlName.BackStyle = 1

.
 
When changing the the Back color of a Control in Design view, the BackStyle property should automatically change to Normal. If the Back Color is changed via VBA code then you will need to also change the BackStyle property. 0 is for Transparent and 1 is For Normal (Solid):

Me.MyOptionGroupCtrlName.BackStyle = 1

.


Thanks !
Your advice worked.
 

Users who are viewing this thread

Back
Top Bottom