You can't go to the specified record ?

D

Daisy

I have put a 'go to next record' button on my data entry
form. However, when I click it (ofcourse after filling in
data), I get the message "You can't go to the specified
record". What's that about ? I am using Access 2003....
 
B

Bruce

You will need a new record button, I think. As far as I
can tell, next record only works when there is a record
ahead of the current one. Your New Record button will
contain code in the Click event something like
DoCmd.GoToRecord , , acNewRec, while the next button is
something like DoCmd.GoToRecord , , acNext.
 
G

gb

You can't go to the next record if there isn't a next record. Records
always finish somewhere....

gb
 

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