AdoRecordSetEvents:EndOfRecordSet()

<< Click to Display Table of Contents >>

Navigation:  Ado Events > AdoRecordSetEvents Class >

AdoRecordSetEvents:EndOfRecordSet()

Previous pageReturn to chapter overviewNext page

Purpose

The EndOfRecordset event is called when there is an attempt to move to a row past the end of the Recordset.

 

Prototype

METHOD EndOfRecordSet ( lMoreData, lStatus, oRecordSet )  CLASS AdoRecordSetEvents

 

Argument(s)

lMoreData        A Logical value that, if set to TRUE, indicates more rows have been added to the Recordset

lStatus        An AdoEventStatusEnum status value

oRecordSet        A Recordset object. The Recordset for which this event occurred.

 

 

Description

This event handler is called when an attempt is made to move past the end of the Recordset object, perhaps as a result of calling MoveNext. However, while in this event, you could retrieve more records from a database and append them to the end of the Recordset. In that case, set lMoreData to TRUE, and return from EndOfRecordset. Then call MoveNext again to access the newly retrieved records

 

See Also

AdoRecordSetEvents, AdoEventStatusEnum