G
Guest
I would like to execute some code in an Access 2000 database when, while
scrolling through a subform using my mouse wheel, I reach the end of the DAO
recordset. Data Additions are allowed in this subform. The following code
fragment indicates how I am trying to do this. However, to my surprise, the
EOF condition is not satisfied when I scroll beyond the last record.
Any clarification or assistance would be much appreciated.
Set rst = Me.RecordsetClone
With rst
If .EOF = True Then
Some code ......
Else
Some other code ...
End If
End With
scrolling through a subform using my mouse wheel, I reach the end of the DAO
recordset. Data Additions are allowed in this subform. The following code
fragment indicates how I am trying to do this. However, to my surprise, the
EOF condition is not satisfied when I scroll beyond the last record.
Any clarification or assistance would be much appreciated.
Set rst = Me.RecordsetClone
With rst
If .EOF = True Then
Some code ......
Else
Some other code ...
End If
End With