checkbox unticks other checkboxes

109bow

Registered User.
Local time
Today, 23:32
Joined
Oct 24, 2007
Messages
141
Morning all, I'm sure this has been asked before, but I don't seem to be able to find the thread.
I have a form, [operator details] that has 3 checkboxes. I want to checkbox3 to untick checkbox1 and checkbox2. Also checkbox2 to untick checkbox3.
Any help would be gratefully received
Thanks
 
you can just set them via code
Code:
sub chkBoxAll_afterupdate
chkBox1.value = false
chkBox2.value = false
end sub
 
I suspect you are storing information in a less than optimum structure.

Tell us what you are storing and we might be able to suggest a better way.
 

Users who are viewing this thread

Back
Top Bottom