Records in a Table will not show up on Form.

  • Thread starter Thread starter Guest
  • Start date Start date
How do I get existing records in a Table to show up on the Form that I enter
the data in?

By designing the form correctly, and making sure that its properties
are correct. In particular turn off the form's DataEntry property if
it's on.

For a more detailed answer, please post a more detailed question. You
can see your database; we cannot.

John W. Vinson[MVP]
 
wvl444 said:
How do I get existing records in a Table to show up on the Form that I enter
the data in?

If your Data Entry property is set to "Yes", all you can do with the form is
enter data. To view data, set the Data Entry property to "No". To do this
and still allow new records to be entered, set the Allow Additions property
to "Yes" if it is not already set that way.

HTH

Mike
 
Back
Top