Using Icons
So far, we have not used any icons. However, these are very easy to add. First
you need to add an ImageList control to your form, called imlSmallIcons. Then
add all the small icons you want to use. Next, view the property sheet, and
click on the ImageLists tab. Click the dropdown next to Small and select imlSmallIcons.
Now, when you add a new item to the ListView control, you can specify an index,
or its key. The following code adds a new item, with its small image set the
first image on the imlSmallIcons Image List:
ListView1.ListItems.Add , , "Test Image Item", , 1
Note that to see the small icons, the View property needs to be set to lvwSmallIcon
To add icons to column headers, simply select the image list you want to use
in the ColumnHeaders drop down, and add the Image Index in the Report Property:
ListView1.ColumnHeaders.Add , , "Name", , , 1
-
Posted by SeanH on 14 Nov 2007
How to sort a ListView control? Here is the code I have written to handle just that. This code also includes a context menu of items I found I needed on almost every ListView I used (I use them alo...
-
Posted by SeanH on 14 Nov 2007
[quote user="Maxjonz"]
I found that the following code didn't work for me
ListView1.ListItems.Remove(ListView1.SelectedItem) '// removes the selected item...
-
Posted by anatha1 on 10 Aug 2007
Hey everyone here are some example of Database that use ListView:
if u need in C# pls copy this code convert to C# your self.
- Use Microsoft Access Database
... -
Posted by Halina on 08 Aug 2007
Hi..
I using ListView in C#.
I tried to add text into certain colum in ListView.
For example: I have 3 columns, Column1, Column2, Column3.
I want to insert "TEST1"&n...
-
Posted by Maxjonz on 05 Jul 2007
I found that the following code didn't work for me
ListView1.ListItems.Remove(ListView1.SelectedItem) '// removes the selected item
I had t...