G
Guest
Running vbexpress2005, I have a listview control with an imagelist1 set to
largeimagelist. There are 8 images in the index
The listview has 3 columns and I want an icon from the imagelist to appear
in the 1st column, some text in the 2nd column, and some more text in the 3rd
column.
The code below add the text to the columns
For Each proc In processes
itemAdd = ListView1.Items.Add(proc.MainWindowTitle)
itemAdd.SubItems.Add(proc.MainWindowHandler)
Next
What I dearly want to know is how do I go about adding the image from the in
the first column
Thanks
largeimagelist. There are 8 images in the index
The listview has 3 columns and I want an icon from the imagelist to appear
in the 1st column, some text in the 2nd column, and some more text in the 3rd
column.
The code below add the text to the columns
For Each proc In processes
itemAdd = ListView1.Items.Add(proc.MainWindowTitle)
itemAdd.SubItems.Add(proc.MainWindowHandler)
Next
What I dearly want to know is how do I go about adding the image from the in
the first column
Thanks