Dynamic Radio Buttons on a Form

  • Thread starter Thread starter robboll
  • Start date Start date
R

robboll

Access 2003 Form

If I have an Options Group1 with two radio buttons:
Option100 = 1 default
Option101 = 2

If Option101 is selected and I want it to automatically go to Option100
if any of the navigation buttons are selected, what is the code?

In the next record button (for example) I tried:
Me!Option100 = 1
or
Me!Option100 = 1
Me!Option101 = 0

but neither work to reset it to default. Is there a simple solution?

Thanks for any tips

RBollinger
 
In addition to Allen's answer, if you want this to occur whenever you move
to a different record, place the code in the On Current event of the form.
 
Back
Top