In the SQLiteDB example you have following routines:
- GetView, returns the Label with the given row and col indexes.
Sub GetView(Row As Int, Col As Int) As Label
' Returns the label in the specific cell
Dim l As Label
l = pnlTable.GetView(Row * NumberOfColumns + Col)
Return l
End Sub
- GetCell, returns the content of the cell with the given row and col indexes.
Sub GetCell(Row As Int, Col As Int) As String
' Gets the value of the given cell
Return GetView(Row, Col).Text
End Sub
- SetCell, sets the value of the cell with the given row and col indexes.
Sub SetCell(Row As Int, Col As Int, Value As String)
' Sets the value of the given cell
GetView(Row, Col).Text = Value
End Sub
Best regards.