Form Will Not Save

C

Charles Phillips

Hello,
I have created a form with several combo boxes
The "Find Record" combo box, keeps the selected record in sync with the main
form.

Code: "Find Record" (Qry) [LastName] &" , "& [FirstName]
Ascending

Form: Current Combo126 = ContactID '
Update the Find Record combo box.

When I make selection in the other combo boxes, those selections are not
being save with the correct record.
Can someone point to me, as to what is wrong...

Thank you,
Charles L. Phillips
 
M

mscertified

Are those combo boxed bound to the data? i.e. CONTROL SOURCE property is set
to a field in your table? You also need to make sure that if your combo box
is multi-column that the right column is being bound.
 
C

Charles L. Phillips

As you can see, I'm still learning...
I'll try this...


mscertified said:
Are those combo boxed bound to the data? i.e. CONTROL SOURCE property is set
to a field in your table? You also need to make sure that if your combo box
is multi-column that the right column is being bound.

Charles Phillips said:
Hello,
I have created a form with several combo boxes
The "Find Record" combo box, keeps the selected record in sync with the main
form.

Code: "Find Record" (Qry) [LastName] &" , "& [FirstName]
Ascending

Form: Current Combo126 = ContactID '
Update the Find Record combo box.

When I make selection in the other combo boxes, those selections are not
being save with the correct record.
Can someone point to me, as to what is wrong...

Thank you,
Charles L. Phillips
 
Top