Listview

Leeus

Well-known member
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 cant 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:

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