J
Jan
hi everyone,
How can i select one item or subitem from a listview en put it in a
textbox?
Thx
How can i select one item or subitem from a listview en put it in a
textbox?
Thx
Jan said:hi everyone,
How can i select one item or subitem from a listview en put it in
a textbox?
You can use the SelectedItems property. The following example will use the
first selected item from the listview (index 0):
TextBox1.Text = ListView1.SelectedItems(0).Text
TextBox1.Text = ListView1.SelectedItems(0).SubItems(0).Text
* Jan said:How can i select one item or subitem from a listview en put it in a
textbox?