Aug 10, 2003 #1 adsfx Programmer Jun 4, 2003 237 GB why do i get the error message- "runtime error 2489...object 3 isnt open" when using this code- DoCmd.GoToRecord , acLast Mrk
why do i get the error message- "runtime error 2489...object 3 isnt open" when using this code- DoCmd.GoToRecord , acLast Mrk
Aug 10, 2003 #2 grobermatic Technical User Dec 21, 2002 153 GB You need to check that the form you are trying to move to the last record in is open at the point that you call the code. You could do this by stepping through the code or put a break point in at come point before the error occurs. Regards Craig Upvote 0 Downvote
You need to check that the form you are trying to move to the last record in is open at the point that you call the code. You could do this by stepping through the code or put a break point in at come point before the error occurs. Regards Craig
Aug 10, 2003 Thread starter #3 adsfx Programmer Jun 4, 2003 237 GB needed an extra comma after gotorecord thanx for your help craig Upvote 0 Downvote