End of File

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I am using the DoCmd.FindRecord and FindNext commands to locate records on a
form. I want to exit with a message box when the last record is reached.

Does the FindRecord and FindNext commands return a value.

Thanks
 
look for the EOF like if (recclone.eof) then msgbox xxxxxx

THis is not tested and will need to be tweaked.
 
Back
Top