See
http://www.alexfeinman.com/samples.asp ListViewDemo.zip
"Boris Nienke" <(E-Mail Removed)> wrote in message
news:1jqmjpyzo3p4.mkp3w939yitt$.(E-Mail Removed)...
> hi,
>
> i would like to store an object along with an listview-item. Something
> like:
>
> ListViewItem item = new ListViewItem();
> item.Text = "Text"
> item.SubItems.Add("Text2")
>
> item.Object = MyObject;
>
> listview1.Items.Add(item);
>
> Is this possible? And how to get the selected item/object when the user
> clicks the item?
>
> thank you
>
> Boris