Cannot change Option Buttons

D

Dennis W

I have read the dialogue between Tony and others in "Option Group problems".
I too have the same situation:
- created an option group of (3) buttons with Button 1 as the default
- when the form displays it does show Button 1 as the default choice
- attempts to select Button 2 or Button 3 do not change the selection
- the selection blinks for a second but no change from Button 1
I too have recreated the option group through the wizard dialog box.

Any other thoughts ? Thanks.
 
A

Allen Browne

Is the option group's Locked property set to No?

Is the form's AllowEdits property set to No?

Is the option group bound to a field that is read-only (e.g. an expression,
or calculated field, or field from a read-only query)?

Is there something cancelling the BeforeUpdate event of the field?

Do other controls on this form work?
 
Top