You can't go to the specified record ?

  • Thread starter Thread starter Daisy
  • Start date Start date
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....
 
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.
 
You can't go to the next record if there isn't a next record. Records
always finish somewhere....

gb
 
Back
Top