TextBoxes

  • Thread starter Thread starter K Crofts
  • Start date Start date
K

K Crofts

Hi
I have a column of text boxes on my form that have been
creted using the table list drag and drop method. When i
enter data into one of the text boxes it automatically
copies this information into all the other textboxes with
the same control source, how do i stop this?
Thanks
 
K Crofts said:
Hi
I have a column of text boxes on my form that have been
creted using the table list drag and drop method. When i
enter data into one of the text boxes it automatically
copies this information into all the other textboxes with
the same control source, how do i stop this?
Thanks

This would indicate that they all have the same ControlSource, i.e. they
are all bound to the same field.

Are you sure you didn't drag ONE field from the field list and then make a
bunch of copies of it?
 
K Crofts said:
Hi
I have a column of text boxes on my form that have been
creted using the table list drag and drop method. When i
enter data into one of the text boxes it automatically
copies this information into all the other textboxes with
the same control source, how do i stop this?
Thanks
You can't. The control source is where the information comes from and if all
the text boxes have the same source they all have the same information.

You can only see the contents of one record on a form.
Perhaps a continuous form is what you want.
 
Back
Top