RowSet.MoveToNextRow

From Xojo Documentation

Method

RowSet.MoveToNextRow()

New in 2019r2

Supported for all project types and targets.

Moves the current row to the next row in the RowSet. After the last row, RowSet.AfterLastRow is True.

Examples

The following method populates a ListBox with a RecordSet. It uses the Name and StringValue properties to obtain the column names and values:

Sub PopulateListBox(dataList As Listbox, rs As RowSet)
If rs Is Nil Then Return

// set up listbox state for population
dataList.RemoveAllRows

// Add the DB columns as the heades for the ListBox
dataList.ColumnCount = rs.ColumnCount
dataList.ColumnAt(-1).WidthExpression = "100"
For i As Integer = 0 To rs.LastColumnIndex
dataList.Heading(i) = rs.ColumnAt(i).Name
Next

// Add the data from the table
While Not rs.AfterLastRow
dataList.AddRow("")

For i As Integer = 0 To rs.LastColumnIndex
dataList.CellValueAt(dataList.LastAddedRowIndex, i) = rs.ColumnAt(i).StringValue
Next

rs.MoveToNextRow
Wend
rs.Close
End Sub