How do I attain object dependency with Access 2003 in Forms view

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

When I input changes to the form the table does not change. There is no
dependency with the form. Is there a way I can change this or do I need to
have the table linked?
 
What is the data source of the form? It should be the table or a query
which contains the variuos fields. Sounds like you might have worked
backwards here and created a bunch of unbound fields.

When you create a form with a table or query as it's data source the fields
are available and can simply be dragged onto your form.

Rick B
 
dacubbees said:
When I input changes to the form the table does not change. There is no
dependency with the form. Is there a way I can change this or do I need to
have the table linked?

Is the form bound to the table? The RecordSource property of the form should be
the name of the table. In addition the ControlSource properties of the controls
on the form should be the names of fields in the table. Finally are you saving
the record before you look at the table?
 
Back
Top