help

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I have a code for linking combo boxes in one of my forms. the combo box
(field B) looks up to a table based on the selection from the previous field,
field A. My problem is that if I make a selection, then decide I want to
change the selection in field A and put a new value in field B I am unable to
do so. The only choices that i have for field B are from my original
selectioni in field A. How do i reset this so I can make changes?
 
Russ said:
-----Original Message-----
I have a code for linking combo boxes in one of my forms. the combo box
(field B) looks up to a table based on the selection from the previous field,
field A. My problem is that if I make a selection, then decide I want to
change the selection in field A and put a new value in field B I am unable to
do so. The only choices that i have for field B are from my original
selectioni in field A. How do i reset this so I can make changes?

Hi Russ, it may be that you need to include the line:
[field B].requery

in the afterUpdate() event of field A

Luck
Jonathan
 

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

Back
Top