group control value is stored where?

  • Thread starter Thread starter Ken
  • Start date Start date
K

Ken

Does anyone know how the value of the selection for a
group control is stored? I've only set these up using the
wizard, and I have a form that the wizard isn't giving me
the option of how to store the result of the selection,
and the control doesn't work.

any help is greatly appreciated.
 
I am not quite sure what you are referring to.
Do you mean an option group (a group of radio buttons or
checkboxes)?
If this in fact the case, the value of the selection is
given to the Frame that encompasses the options. It is
give the value of the selection - the numbers 1,2,3,4 that
you assigned in the wizard. You can see these values by
selecting each individual checkbox/radio button and
looking on data tab (option value) of their properties
dialog.

Frame10 --------------
| -- Option 1 |
| -- Option 2 |
| X Option 3 |
|--------------------|

Here the value of Frame10 = 3
You can link the controlsource of the frame to a field in
one of your tables also. (data tab of properties)

Hope this is what you were looking for.

jmonty
 
Back
Top