This property indicates how many records constitute one page in a Recordset object.
var = recordset.PageSize
Returns a Long value, indicating how many records are on a page. The default is 10.
Use the PageSize property to determine how many records make up a logical page of data. Establishing a page size enables you to use the AbsolutePage property to move to the first record of a particular page. This is useful when you want to enable the user to page through data, viewing a certain number of records at a time.
You can set this property at any time. ADOCE uses the value of the property to calculate the location of the first record of a particular page.