Hallo tsteward,
Here is a part of help-file Listview.chm.
Code:
<b>CellGet</b>
Get the value of a specific cell in a ListView.
Syntax: CellGet (ColName As String, RowNumber As Integer) As String
Example:
value = lv.CellGet("Col1", 0) 'Gets the value of the first row in a column named "Col1"
Code:
<b>CellSet</b>
Sets the value of a specific cell in a ListView.
Syntax:CellSet (ColName As String, RowNumber As Integer, Cell As String)
Examples:
lv.CellSet("Col1", 0, "Erel") 'Sets the value of the first row in a column named "Col1"
' Fills the first row with the value "Something" in all cells.
For i = 0 To lv.ColCount-1
lv.CellSet (lv.ColName(i), 0, "Something")
Next
Ciao,
Filippo