Listview

Leeus

Regular
Joined
Dec 23, 2002
Messages
50
I am using a listview control and want to get the selected item in the listview into a text box and can't seem to do it??? What is the control for this i.e. lstbox.???
 
If you want to put the text from the selected listviewitem in to a listbox, you would do it like this:

Visual Basic:
ListBox1.Items.Add(ListView1.SelectedItems(0).Text)
 
Back
Top