My form is overwriting my table entries!

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

Guest

I have used the autoform button to create a form which populates records into
one of my database tables.

Upon my importing of records successfully, my form attempts to overwrite the
first entry within the table, as opposed to adding a new entry.

Why would this be happening?
 
Mike said:
I have used the autoform button to create a form which populates
records into one of my database tables.

Upon my importing of records successfully, my form attempts to
overwrite the first entry within the table, as opposed to adding a
new entry.

Why would this be happening?

By default a form opens to the first record of the underlying record source.
If you want to use it only for new entries then set its Data Entry property
to true.
 
This fixed it. Thank you Rick!

Rick Brandt said:
By default a form opens to the first record of the underlying record source.
If you want to use it only for new entries then set its Data Entry property
to true.
 
Back
Top