ListView
Visual Basic
2
Posts
2
Posters
0
Views
1
Watching
-
:confused:Hello people =) I want to take a selected row from a ListView and transfer the information to TextBoxes or Labels. How do I do it? /Marcus
Hi, For example, if your listview (lswMyListView) has two columns, and you want to transfer the selected row into two textbox (txtColumn1 and txtColumn2) you have to do that (for instance, in the lswMyListView_Click procedure) : txtColumn1.Text=lswMyListView.SelectedItem.Text txtColumn2.Text=lswMyListView.SelectedItem.Subitems(1) Hope this helps ! Jerome