synchronize combo boxes

S

Suzanne

I am pretty new to Access - and self taught for the most part. I am trying
to synchronize combo boxes. I have been able to use the example on the
Microsoft Website and get it to work - except that the combo boxes remain
unbound and then when I do select a control source - my form turns up blank.
Obviously I'm doing something wrong - can anyone help? Note - I didn't use
the VBA method - I used the macro method as I couldn't get the VBA method to
work at all (I'm not too familiar with VBA in Access).
 
A

Arvin Meyer MVP

Suzanne said:
I am pretty new to Access - and self taught for the most part. I am trying
to synchronize combo boxes. I have been able to use the example on the
Microsoft Website and get it to work - except that the combo boxes remain
unbound and then when I do select a control source - my form turns up
blank.
Obviously I'm doing something wrong - can anyone help? Note - I didn't
use
the VBA method - I used the macro method as I couldn't get the VBA method
to
work at all (I'm not too familiar with VBA in Access).

Try looking at the sample database at:

http://www.accessmvp.com/Arvin/Combo.zip
 
S

Suzanne

Thanks for the link - I had kind of figured that I may have to do an
"afterupdate" to the unbound lists - is there no way that I can synchronize
the combo boxes and yet still have them bound to a particular field?

Thanks again.
 
A

Arvin Meyer MVP

Combo and list boxes have 2 kinds of binding. A column binding, which
controls which column (usually the first) of the combo or list you are
reading when you say in code: Me.cboComboName, and a field binding which can
bind to a field in a table or query.

Lookup combo and list boxes are always unbound to the field, because if one
bound them to a field, every time a lookup was done, it would change the
data.
 

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

Similar Threads

Synchronize combo boxes 2
Synchronized combo boxes in subforms 4
synchronize combo boxes 1
synchronize combo boxes 7
"Reset" combo boxes 4
Creating Combo boxes based on Criteria 1
my combo boxes 2
Combo box help 1

Top