Option Group

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hi!

This is a really silly question which I hope someone can put me straight on.

I have an option group with five possible options. The group is unbound to
any field but is used to run different code depending on the option selected
and then this completes a field. The problem is that when I select an option
in one record, it carries over the same selected option in the next record
but I don't want this to happen for obvious reasons.

Can anyone help please?
 
In the form's on_current event, reset the option group to your defaults. For
example, if your default is Option 7, and your Option Group is called
Frame0, you would use Me.Frame0.Value = 7
 
Back
Top