I’m pretty sure there’s a way to get a property from a class in a rowtag but I can’t find the code in my old projects.
Dim s As string = _________(listbox1.rowtag(0)).myString
I know I can go
Dim t As myClass = listbox1.rowtag(0)
s = t.myString
but I’m pretty sure there’s something close to the fill in the blank example above.
TIA