Jason,
Van, as usual, gives excellent advice. Also note that forms don't have
*fields*-- which are table attributes where data is stored--they have
*controls*, where data is displayed. If the control is bound to a field
(that is, its ControlSource property is set to the name of a field in the
form's underlying RecordSource), then what is entered into the control will
also be saved to the field.
In your case, however, the address associated with the chosen customer is
fully defined in the Customer table, and therefore is not needed to be stored
in the table underlying your form. You just need to display it as helpful
information.
The distinction between a form or report control and a field is an important
one. Fields have a datatype--text, integer, Date/Time, etc. Controls do not
have a datatype; they are just a data container that can either be Bound to
an underlying field, in which case the data entered into the control is saved
to the field, or they can be unbound.
Hope that helps.
Sprinks