Option Group Question (1 Viewer)

Peter Paul

Registered User.
Local time
Today, 04:22
Joined
Jan 1, 2000
Messages
82
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

Registered User.
Local time
Yesterday, 22:22
Joined
Feb 26, 2001
Messages
4,018
if not checkbox then
optiongroup = null
optiongroup.visible=false
else
optiongroup.visible=true
end if
 

Peter Paul

Registered User.
Local time
Today, 04:22
Joined
Jan 1, 2000
Messages
82
Many thanks, I got it to work
Peter
 

Users who are viewing this thread

Top Bottom