End of File

S

scrumpy42

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
 
C

Cyberwolf

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

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