ListView1.SelectedItem.Text ... :S

Lanc1988

Contributor
Joined
Nov 27, 2003
Messages
508
I have a listview and it has some items and subitems in it and I need the code to get ListView1.SelectedItem.Text that is in the first column of the listview (the item that is selected of course)

I tried things like ListView1.SelectedItem.Text but I can't seem to figure it out.
 
Ok, it was listview1.items(0).Text

where the "(0)" is tells what column to get the text from (0) being the first (1) being the second etc.
 
Back
Top