Options Group not initializing after undo

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

Guest

I have a few options group defined on my form. I also
have code for form_beforeupdate where I am checking
if user wants to save record yes/no/cancel.
If user chooses option no, all fields become blank
except for the option groups remain checked out with
values that were selected for the record.

I already tried setting the value of option button to null,
but it doesn't help in this case.

How can I fix this?

Thank you,
-M
 
Me said:
I have a few options group defined on my form. I also
have code for form_beforeupdate where I am checking
if user wants to save record yes/no/cancel.
If user chooses option no, all fields become blank
except for the option groups remain checked out with
values that were selected for the record.

I already tried setting the value of option button to null,
but it doesn't help in this case.


The options in an option group do not have the Value
property. It's the option group's frame that has the value
of the group.
 
Marsh,

Thanks for the reply.
I meant was Frame only, I am initializing the value
in frame of option group, still it displays the
old value.

Anything else I can look into?

Thank you,
-M
 
Are you sure the check boxes are actually members of the
frame, not just positioned in the frame's area? (To check
this, click on the frame's border and see if the check boxes
display a handle in their upper left.)

Does the field that's bound to the frame's value allow for a
Null (i.e. it's Required property is set to No)?

Those are the only ways I could think of to get setting the
frame to Null to fail.
 
Back
Top