Larry,
The subitems are in the selectedItem.SubItems collection
hope that helps
Steve Stein,
Visual Basic Team
--------------------------------------------------------------------
This reply is provided AS IS, without warranty (express or implied).
--------------------
From: larry mckay <
[email protected]>
References: <
[email protected]>
X-Newsreader: AspNNTP 1.50 (ActionJackson.com)
Subject: Re: selecting an item from a vb.net listview
Mime-Version: 1.0
Content-Type: text/plain; charset="us-ascii"
Content-Transfer-Encoding: 7bit
Message-ID: <#
[email protected]>
Newsgroups: microsoft.public.dotnet.languages.vb
Date: Mon, 27 Oct 2003 15:08:24 -0800
NNTP-Posting-Host: actionjackson133.dsl.frii.net 216.17.147.133
Lines: 1
Path: cpmsftngxa06.phx.gbl!TK2MSFTNGP08.phx.gbl!TK2MSFTNGP12.phx.gbl
Xref: cpmsftngxa06.phx.gbl microsoft.public.dotnet.languages.vb:151089
X-Tomcat-NG: microsoft.public.dotnet.languages.vb
i want to get all of the subitems as well.
I have the listview.view set to 'details' so i want to get all subitem
information as well. do you have any suggestions?
From: (e-mail address removed) ("Steven Stein [MSFT]")
Date: Mon, 27 Oct 2003 20:46:35 GMT
Subject: RE: selecting an item from a vb.net listview
Newsgroups: microsoft.public.dotnet.languages.vb
Larry -
Hope this helps:
Private Sub ListView1_DoubleClick(ByVal sender As Object, ByVal e As
System.EventArgs) Handles ListView1.DoubleClick
Dim itemPoint As Point = ListView1.PointToClient(Cursor.Position)
' This is the item that was double-clicked
Dim selectedItem As ListViewItem = ListView1.GetItemAt(itemPoint.X,
itemPoint.Y)
End Sub
Steve Stein,
Visual Basic Team
--------------------------------------------------------------------
This reply is provided AS IS, without warranty (express or implied).
--------------------
| From: larry mckay <
[email protected]>
| X-Newsreader: AspNNTP 1.50 (ActionJackson.com)
| Subject: selecting an item from a vb.net listview
| Mime-Version: 1.0
| Content-Type: text/plain; charset="us-ascii"
| Content-Transfer-Encoding: 7bit
| Message-ID: <
[email protected]>
| Newsgroups: microsoft.public.dotnet.languages.vb
| Date: Wed, 22 Oct 2003 15:05:47 -0700
| NNTP-Posting-Host: actionjackson133.dsl.frii.net 216.17.147.133
| Lines: 1
| Path: cpmsftngxa06.phx.gbl!TK2MSFTNGP08.phx.gbl!TK2MSFTNGP10.phx.gbl
| Xref: cpmsftngxa06.phx.gbl microsoft.public.dotnet.languages.vb:149280
| X-Tomcat-NG: microsoft.public.dotnet.languages.vb
|
| anyone have the code to select and listview item or row (subitems)
| after a doubleclick event from a listview.
|
|
| Don't just participate in USENET...get rewarded for it!
|