R
RipperT
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
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