Passing values out of a OptionBox Group

S

silkworm

Hi, I am a novice, so please excuse my ignorance.

I want two Option Boxes to be mutually exclusive, i.e. when one is
turned on the other must be off. So I put the two boxes into a
OptionBox Group. But then I realized the individual OptionBoxes in a
group doesn't have on/off values themselves, and only the Group has
value of the selected Box. How can I pass out the On/Off Status
information of a particular Option Box?

Thanks

Tom
 
R

Rick Brandt

silkworm said:
Hi, I am a novice, so please excuse my ignorance.

I want two Option Boxes to be mutually exclusive, i.e. when one is
turned on the other must be off. So I put the two boxes into a
OptionBox Group. But then I realized the individual OptionBoxes in a
group doesn't have on/off values themselves, and only the Group has
value of the selected Box. How can I pass out the On/Off Status
information of a particular Option Box?

Thanks

Tom

If they are mutually exclusive then you only need one field in the table to
store the data. This, That, or Niether is easily stored in one field so why use
two?
 
Top