link to check boxes

H

Hmartinez

How to link Two check boxes together one for yes one for no when you check
one the other one automatic is uncheck
 
D

Dave Peterson

You could do this with code, but why bother?

If you want to let the user indicate yes or no, just use a single checkbox. If
it's checked, it's Yes. If it's not checked, it's no.

If you really want some control to turn off when another turns on, then don't
use checkboxes. Try using a pair of optionbuttons. This behavior is built into
optionbuttons.
 
Top