retrieve records

  • Thread starter Thread starter GSV
  • Start date Start date
G

GSV

I have inherited this database with problems. Most of the
problems are solved. But I'm stuck with the following.
When I open the form it allows me to create new invoice
records with new data. I can move from one record to
another but if I close and reopen the form the invoice
records that I just enter will not appear. The form shows
a new invoice to enter new data and the record selector is
showing record 1 not allowing me to retrieve the previous
entry. I did check and new data is saved to the table.
Please help. In advance thanks for your help.
 
The form's Data Entry property likely is set to Yes. Change it to No. That
will allow the form to display all records.

Otherwise, the code that opens the form is setting the form to "Add" mode.
You'll need to go into that code and change the DoCmd.OpenForm command to
"Edit" mode.
 
Back
Top