-
Icons and listview.
HI, i am trying to load a list of files and paths into a listview, and then have a little icon of the fileicon next to it. How would i do this. I should use this (lin below) code to get the icon, but im not sure how to place it next to the aprropate item in the listview.
http://www.codeguru.com/csharp/cshar...cle.php/c4261/
-
Re: Icons and listview.
insert the icons in an image list and set the listview's image list property to that. (there are separate ones for small icons, large icons etc.)
-
Re: Icons and listview.
Doesnt that make each items have that pic?
-
Re: Icons and listview.
well no
each listItem has a ImageIndex property. Set it to -1 to have no image associated with it, or set it to the index of the image in the corresponding imagelist
sorry I'm tired.. and vague :( maybe shouldnt have replied to start with :sick: :D
-
Re: Icons and listview.
Ok, I cant get it, Example code?