Edit - Option Group

  • Thread starter Thread starter Aurora
  • Start date Start date
A

Aurora

I am using Access 2000

I created several option groups without a default choice.
Now I want to make them have a default choice. Does
anyone know how to edit a option group or do I just have
recreate each one???

Aurora
 
Open the form in design mode. Select the option group (the frame boarder)
and open the Properties dialog. On the Data tab, set the Default Value
property. You could also set it in the form's Open event if you wanted.

Me.optMyOptionGroup.DefaultValue = 1

This won't be stored in the option group between sessions, but since it's in
the form's open event, it will get applied each time the form opens and so
should be transparent.
 
Back
Top