Adding and removing items
Adding an item to the ListView control is very similar to adding items to
a ListBox control, however you have much more options. The following code, simply
adds a few items, with no icons to ListView1:
ListView1.ListItems.Add , ,"Fred"
ListView1.ListItems.Add , ,"Sarah"
ListView1.ListItems.Add , ,"Paul"
You will notice that I have missed two parameters before specifying the text.
The first specifies the Index (a unique number) to that item. If you leave that
option blank, the ListView will automattically add a unique Index. The second
parameter specifies a key. This is a unique string that can also be used to
identify that item. If left blank, no key will be assigned.
To remove an item, simply use this syntax. Replace 1 with its index or the
items key.
ListView1.ListItems.Remove(1) '// removes the first item
So, to remove the selected item, you would use:
ListView1.ListItems.Remove(ListView1.SelectedItem) '// removes the selected item
-
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...