Data Access Page DataEntry Property = True

G

Guest

I have a data access page that the DataEntry property is set to true and I'm
getting the following error message when it loads:

"Either BOF or EOF is True, or the current record has been deleted.
Requested operation requires a current record."

If I change the DataEntry property to false, the page works fine. Any
insights? I really need it to open to a blank form.
 
K

Ken Snell [MVP]

Sounds as if the recordset that is the page's data source is not updatable,
therefore no new record can be created by the form.
 
G

Guest

It's connected to an updatable table, but I do have some fields (for display
purposes only) on the page that are from related tables. Any suggestions?

Ken Snell said:
Sounds as if the recordset that is the page's data source is not updatable,
therefore no new record can be created by the form.
 
K

Ken Snell [MVP]

Are you using a query to get the values of those fields from the related
tables? If yes, that may be the source of your problem; data access pages do
not allow you as much flexibility in what is an updatable query as do forms.

But, to give more info, you'll need to post the Recordset here, and post the
Unique Table here.

--

Ken Snell
<MS ACCESS MVP>


Mona-ABE said:
It's connected to an updatable table, but I do have some fields (for
display
purposes only) on the page that are from related tables. Any suggestions?
 

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