The DataNavigator control allows you to change the current record in a recordset. Use the DataNavigator control in conjunction with another data-bound control, such as the DataBinder control. The DataBinder control binds a property of another control to a field in a recordset. This property obtains data from the recordset’s current record, which is initially the first record. To move to another record, use a DataNavigator control that is bound to the same recordset.
To navigate a recordset with the DataNavigator control
Button | Navigation Direction |
<< | Move to the first record. |
< | Move to the previous record. |
> | Move to the next record. |
>> | Move to the last record. |
For information about using the DataNavigator control in code, see the DataNavigator Control reference topic.