there is a part in my program that you need to add item to listView,
but for now it's only with text, and i want to add image as item with sub items of text.
i mean that now i have something like this:
_____________________________________________
a | subitem | subitem | subitem | subitem
_____________________________________________
and i want:
_______________________________________________
image | subitem | subitem | subitem | subitem
_______________________________________________
so i tried to make something like this:
open an image file with openfiledialog
than it's show it on a picturebox
than you click button and it close it
and show the image on the listview.
i tried to add first the image to an imageList and then the list take the index and show it but it didn't work and also it's to messy so..