Recordset Property Example

The example cycles through the records in the Recordset and automatically displays the data from the current record in controls bound to the data control.

Data1.Recordset.MoveFirst
Do Until Data1.Recordset.EOF
  ...
  Data1.Recordset.MoveNext
Loop