Text Box Update on Continious Form

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

Guest

I have a continious form with a textbox which I would like to update per
line. If I enter info in the first box the same value is currently displayed
in the rest of the form on all lines. How do I get it to only update a
specific box.
 
Unbound controls in continuous forms will display the same value in all
records; that's the way it works. You need to bind the textbox to a field
in the underlying table for it to display different values for each record.
 
You must bind the textbox to a field in the form's recordsource if it's to
display a different value for each record. This is one of the limitations of
a continuous forms view.
 
Back
Top