Select a specific cell of a listbox

I have a multi column listbox. I want to be able to pull what is in a specific cell of the row a user selects. How can this be done. Basically, if a user selects row 4, I want to be able to use the data that’s in column 2 of row 4.

Thanks!

Have you checked the Listbox documentation?
http://documentation.xojo.com/index.php/ListBox.Cell

dim s as string = lb.Cell(lb.ListIndex, 2)