RowSet.RemoveRow

From Xojo Documentation

Method

RowSet.RemoveRow()

New in 2019r2

Supported for all project types and targets.

Removes the current row in the RowSet.

Example

// Remove the current row in an existing RowSet
// db is an existing database connection
Try
rs.RemoveRow
Catch error As DatabaseException
MsgBox("DB Error: " + error.Message)
End Try