mutually exclusive checkboxes

G

Guest

How can I make two check boxes mutually exclusive? When one is checked, the
other is disabled. I've tried something like this in each controls'
after_update event:

If checkbox1 = true then
checkbox2.enabled = false
else checkbox2.enabled = true

but this seems to carry over from one record to the next. When I click
'new', the last control that was disabled will be disabled in the new record.
How can I start each record with both controls enabled, have one become
disabled when the other is checked, AND have them stay that way when
navigating away and returning to the record?
Thanx,

Rip
 
P

PC Datasheet

Create an option group with two checkboxes. The checkboxes are mutually
exclusive. (Option Group is in the Toolbox)
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top