Freigeben über


Methoden MoveFirst, MoveLast, MoveNext und MovePrevious (RDS)

Gilt für: Access 2013, Office 2013

Wechselt zum ersten, letzten, nächsten oder vorherigen Datensatz in einem angegebenen Recordset-Objekt.

Syntax

DataControl. Recordset. { MoveFirst | MoveLast | MoveNext | MovePrevious}

Parameter

Parameter Beschreibung
DataControl Eine Objektvariable, die ein RDS.DataControl-Objekt darstellt.

Hinweise

Sie können die Move-Methoden mit dem RDS verwenden. DataControl-Objekt zum Navigieren durch die Datensätze in den datengebundenen Steuerelementen auf einer Webseite.

For example, suppose you display a Recordset in a grid by binding to an RDS.DataControl object. You can then include First, Last, Next, and Previous buttons that users can click to move to the first, last, next, or previous record in the displayed Recordset. You do this by calling the MoveFirst, MoveLast, MoveNext, and MovePrevious methods of the RDS.DataControl object in the onClick procedures for the First, Last, Next, and Previous buttons, respectively. The Address Book example shows how to do this.