OKay whole new problem but related...
It works ! I can go to record #34 and then click the button to go to the next form
when I go to the next form and it is at #34 and then I go to the next form and it's on #34 working great.
BUT.... say I decide I want to check #35 or I wanted to move between records on this form previous or next record button don't work it goes to a new record but not to other records says "you can't go to the specified record You may be at the end of the record set" ...it's not linking to the other records...and even if I go back to the main form it still is locked on #34, I have to closeall and go to switchborad and go back in to be able to move between records on the main form...
these are the codes for the previous:
Private Sub Command60_Click()
On Error GoTo Err_Command60_Click
DoCmd.GoToRecord , , acPrevious
Exit_Command60_Click:
Exit Sub
and next buttons:
Private Sub Command59_Click()
On Error GoTo Err_Command59_Click
DoCmd.GoToRecord , , acNext
Exit_Command59_Click:
Exit Sub
How do I link it to the records so I can still move back or forward on what ever form I'm on ??