Quote:
|
I am displayed all data as text from whole row, but I want only to display data from one field in row that is selected.
|
Only get the Text of the desired subitem instead of all the subitems.
Quote:
I have in my database a picture for a each row as OLE object, and I want do display that picture in PictureBox for a item that is
selected in ListView.
|
Create an Image object for each row and assign it to the Tag property of the corresponding ListViewItem. In the SelectedIndexChanged event handler you can get the Image and display it in the PictureBox. [ame="http://www.vbforums.com/showthread.php?t=469562"]Here[/ame] is an example of getting Images from a database.