Hi this is very basic, but I am stuck, how do I show two fields w/ same data
in the form? For example, I have a field NAMEFIELD that come from table
LOCATOR and I want the show in the form NAMEFIELD and I have another field
NEWNAME that shows me what name in at the first one. Thanks
BruceM - 01 Jun 2005 00:12 GMT
Fields are in tables. Forms have controls such as text boxes and combo
boxes. These controls may or may not be bound to a record source in a table
(or query). Bind two controls to the same record source if you want them to
show the same data. In this case set the record source of each to NAMEFIELD.
This assumes that NAMEFIELD is a field in the form's record source.
> Hi this is very basic, but I am stuck, how do I show two fields w/ same data
> in the form? For example, I have a field NAMEFIELD that come from table
> LOCATOR and I want the show in the form NAMEFIELD and I have another field
> NEWNAME that shows me what name in at the first one. Thanks