![]() | |
![]() |
| | Thread Tools | Search this Thread | Display Modes |
#1
| |||
| |||
|
#2
| |||
| |||
|
|
How do I get the string of the selected item in a listview when a user double clicks the item? Note: I don't know the index number of the item, they are automatically generated. |
#3
| |||
| |||
|
|
-----Original Message----- * "Bill English" <nutsy4 (AT) comcast (DOT) net> scripsit: How do I get the string of the selected item in a listview when a user double clicks the item? Note: I don't know the index number of the item, they are automatically generated. \\\ Private Sub ListView1_DoubleClick(ByVal sender As Object, ByVal e As System.EventArgs) Handles |
|
MsgBox(Me.ListView1.SelectedItems(0).Text()) End Sub /// -- Herfried K. Wagner [MVP] URL:http://dotnet.mvps.org/ . |
![]() |
| Thread Tools | Search this Thread |
| Display Modes | |
| |