retrieve records

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.
 
K

Ken Snell

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.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top