If you use seperate checkboxes you have to check every box when clicked on.
Fortunately the code is same for every checkbox:
me.checkbox1=not me.checkbox2
me.checkbox1=not me.checkbox3
etc.
put the code in the onclick event of the checkbox.
If you are working on a form and want to do the action as a final check you
could loop through the checkboxes and set checkbox based on the the values
of the other checkboxes.
hth
Thanks Maurice,
I'm afraid I didn't explain myself very well. Box1 is the only check box I
want this to happen to. The other 5 can be checked in any combination...If I
check box2, box1 gets unchecked, if I check box3, box1 gets unchecked, if
multiple boxes are checked, box1 should be unchecked, etc. Boxes 2-6 can be
all checked, or any combination.
Thanks,

Signature
Marc
> If you use seperate checkboxes you have to check every box when clicked on.
> Fortunately the code is same for every checkbox:
[quoted text clipped - 18 lines]
> >
> > Thanks,
Maurice - 20 Jul 2007 21:16 GMT
Hi Marc,
I misread sorry for that. In the on click of the checkboxes just put:
me.checkbox1=false
This will make checkbox 1 be unchecked based on the choices you make (also
the combinations eg 2 and 5 are checked)
hth

Signature
Maurice Ausum
> Thanks Maurice,
>
[quoted text clipped - 28 lines]
> > >
> > > Thanks,