Concatenated data disappears when scrolling

  • Thread starter Thread starter Rick
  • Start date Start date
R

Rick

I have a form with a textbox that displays a concatenation
of two fields for: "lastname, firstname". The form
displays records in a continous fashion. When I scroll
through the records, the concatenated data in the textbox
disappears. The other fields display just fine.
Interestingly, when I place the cursor in one of the other
fields and use the down arrow to move through the records,
the textbox displays its data fine. Weird! Any help
appreciated,
-Rick
 
I have a form with a textbox that displays a concatenation
of two fields for: "lastname, firstname". The form
displays records in a continous fashion.

I'd suggest doing the calculation in a calculated field in the Query
upon which the form is based. Unbound textboxes in a continuous form
are... odd. There's really only one textbox repeated many times, so if
you change any of its properties, it changes for all instances; this
may be an instance of this phenomenon.
 
Back
Top