Using Combo Box in Continuous Form

Friday

Registered User.
Local time
Today, 18:13
Joined
Apr 11, 2003
Messages
542
Helping another developer with this and I don't have time. Form/subform setup. Subform has a combo box that populates values for three fields in the subform. Problem is when the user selects a value in the combo, it populates the values for those three fields on all the records showing in the continuous form, instead of just the current record. How can he limit this to just the current record, or can that be done with a continuous form?
 
The textboxes you are populating are apparently unbound, and this is normal behavior for unbound controls on Continuous or Datasheet forms. You need to bind the textboxes to fields in the underlying table/query.
 
The textboxes you are populating are apparently unbound, and this is normal behavior for unbound controls on Continuous or Datasheet forms. You need to bind the textboxes to fields in the underlying table/query.

That was exactly what it was. Got it fixed! Thanx much! :)
 

Users who are viewing this thread

Back
Top Bottom