Hi, I am using this code right out of the documentation.
I get an error.
“Parameters are not compatible with this function”
selectedRows.AddRow(row)
Var selectedRows() As DesktopListBoxRow ' Will hold the selected rows
For Each row As ListBoxRow In ListBox1.Rows
If row.Selected Then
selectedRows.AddRow(row)
End If
Next
Any ideas?