D
Dan
I presently have the following code that registers when
its not at the EOF, but doesn't work when at the last
record.
Here is the code:
Set MyDB = CurrentDb
Set MyTable = MyDB.OpenRecordset("qryMainForm",
dbOpenDynaset, dbSeeChanges)
If MyTable.EOF Then
MsgBox "You've reached the end blah blah"
Else
DoCmd.GoToRecord , , acNext
End If
mytable and mydb are publicly named.
Any suggestions would be greatly appreciated.
Thanks,
Dan
its not at the EOF, but doesn't work when at the last
record.
Here is the code:
Set MyDB = CurrentDb
Set MyTable = MyDB.OpenRecordset("qryMainForm",
dbOpenDynaset, dbSeeChanges)
If MyTable.EOF Then
MsgBox "You've reached the end blah blah"
Else
DoCmd.GoToRecord , , acNext
End If
mytable and mydb are publicly named.
Any suggestions would be greatly appreciated.
Thanks,
Dan