View Full Version : Option Group Question


Peter Paul
04-02-2001, 12:18 PM
I have a checkbox which, if checked, directs the user to an option box to select an option. If the user selects an option, then decides that his original choice was incorrect and he unchecks the checkbox, how can I get the option button to deselect?

I Tried:

If Checkbox = False Then
IsNull (OptionGroup)
End If

To no avail.

Thanks for your help,
Peter Paul

llkhoutx
04-02-2001, 12:24 PM
if not checkbox then
optiongroup = null
optiongroup.visible=false
else
optiongroup.visible=true
end if

Peter Paul
04-03-2001, 03:02 PM
Many thanks, I got it to work
Peter