I just learned Ms Access for about 2 weeks, so pardon me if I missed some basic things. Currently I have a continuous form containing combo boxes which connect to my tblMain
table. This table only has two fields:
Category
: which used as 'label' for each combo boxes;IsSelected
: used as Control Source for the combo boxes, which returns to Yes orNo depending on whenever it's corresponding combo box is ticked or not.
This system worked just fine. However, I want to tweak it a little bit. Everytime I ticked on a combo box, the value on IsSelected
field will not update until I click another combo box (or another label). Is this how combo boxes work? Can I set it so it will update the value just after combo box is ticked, without having to click on another box or label?
I plan to add a button on the form's footer to append every ticked record to another table. That's why I want to prevent a record not appended when I forgot to click on another row.