CurrentRecord, VisibleRecords Properties Example

The example causes the current record to become the first record visible. If the user scrolls the DataRepeater control so that the current record is hidden, invoking the procedure causes the current record to reappear.

Private Sub MakeFirstVisibleRecord()
   DataRepeater1.VisibleRecords(1)=DataRepeater1.CurrentRecord
End Sub