As said in documentation:
AddExpandableRow (text As String)
When configured to have more than one column, Item is always assigned to column zero
How can I fill other columns in an expendable row ?
As said in documentation:
AddExpandableRow (text As String)
When configured to have more than one column, Item is always assigned to column zero
How can I fill other columns in an expendable row ?
listbox1.AddExpandableRow(“column 0 text”)
dim row as integer = listbox1.LastAddedRowIndex
listbox1.CellValueAt(row, 1) = “column 1 text”
listbox1.CellValueAt(row, 2) = “column 2 text”
etc.
Thank you so much @Tim_Hare !
CellValue is deprecated I use CellTextAt because I use DesktopListbox.