Refreashing a feild list in Access

S

sonfitz

If you make an addtion to a table and go to the form that is connected with
that table to add the newly created feild how do you refreash the feild list
so that you can see the new feild you added to the table that the form is
connected to?
 
V

Van T. Dinh

If the RecordSource of the Form is the Table itself, the Field List will be
automatically refreshed when you open the Form in DesignView.

Since you asked the question, it is likely that the RecordSource of the Form
is base in a Query / SQL String which is, in turn, base on the Table. In
this case, you need to modify the Query / SQL to include the additional
Field so that the Form can pick up the new Field.
 
Top