how to name option group

G

G

I used the wizard in ACCESS 2003 to create an option group, but it never gave
me the chance to name it. It did assign values to the options, but I don't
even see it as an object in the dropdown list to select the option group to
set it's properties.
If you can help, I'd sure appreciate it.

G
 
A

Allen Browne

In form design view, the option group is bounded by what looks like a
rectange. Right-click on its border line, and choose Properties.
 
G

G

When I do that, the name already says "frame16". So if I just rename it
optXXX, it's good?
 
A

Allen Browne

Sure. That's the idea.

If you want to change the name of the field it is bound to, change the
Control Source property as well.

If you have already added event procedures, you will have code that looks
like this:
Private Sub Frame16_AfterUpdate()
and you need to change the name in your code window, and make sure the
AfterUpdate proeprty still says:
[Event Procedure]
 
Top