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!
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!
dim s as string = lb.Cell(lb.ListIndex, 2)