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
 
Back
Top