checkboxes and a combo

  • Thread starter Thread starter scubadiver
  • Start date Start date
S

scubadiver

Hello,

I have three checkboxes that need to be ticked before a combo box can be
enabled. I can't remember what event to use and where.

Cheers in advances

David
 
David

It sounds like you want to be able to check the condition of all three when
anything happens with any one of those checkboxes.

You might decide to create a form-level procedure that checks all three and
sets the .Enabled property of the combobox accordingly. Then you'd add a
call to that procedure in each checkbox's AfterUpdate event.

Regards

Jeff Boyce
Microsoft Office/Access MVP
 
Back
Top