In ListBox, what is the use of SelectedRowText ?
SelectedRowText As String
The text of the currently selected item.
In the case of multi-column ListBoxes, the value of the cell in the first column is returned.
I was expecting to get the whole Row Text (thus the name: “Selected Row Text”)…
As is it is just a short cut from reading Cell Text At(Row,0)
So, I will use a loop to do what I want.