You need to add an ImageList control to your Form and add the images you want to use to that. The easiest way of doing that is during design-time. Right click the ImageList and select properties. In the Properties Pages dialog that appears select the Images tab and click the Add button to add one image. You can, if you want, give the image a Key value.
Next right click your ListView control and select Properties. Now select your ImageList in the ImageList property drop-down list. When you add items to the ListView you can specify which images you should use from the ImageList, either by Index (1 is the first image) or by Key name.
I have added the imagelist and inserted the icons and i have also
added the imagelist in property of listview imagelist but how to specify which image should use from the imagelist
Last edited by yousufkhan; Aug 11th, 2006 at 05:48 AM.
Reason: Resolved