Library tutorials & articles

ListBox Control

Removing Items

To remove an item from a listbox during design time, select the Items property box, and press the drop down button. Select the items you want to remove and press Delete. Press Return to apply the changes, Esc to cancel.

To add remove an item from a list box during runtime, you can use the following syntax:

List1.RemoveItem Index

where Index is a integer representing the list index of the item to be removed. So if you use the previous example, David would have a list index of 0 (first item) , Paul's would be 1, and Sarah's 2. Note that if the listbox is sorted, the list index will change as items are added. The following code removes the selected item, and the first item on the list.

' Remove the first item
List1.RemoveItem 0
' Remove the selected item
List1.RemoveItem List.listindex

The listindex property returns the listindex of the currently selected item.

To remove all the items from a list box simply use the following statement:

List1.Clear

Comments

  1. 19 Mar 2007 at 07:33
    When i need right click selection for some list controls i'm just using ListView control instead of ListBox. Can't see any reason why to write any additional code. Simplicity must be kept in everything!

  2. 16 Jan 2006 at 06:01

    Suppose I have numeric values in my listbox. How do I add them and display the result on a message box.

  3. 30 Jul 2005 at 08:54
    How to lock particular item in the list box in visual basic?
  4. 01 Jan 1999 at 00:00

    This thread is for discussions of ListBox Control.

Leave a comment

Sign in or Join us (it's free).

James Crowley James first started this website when learning Visual Basic back in 1999 whilst studying his GCSEs. The site grew steadily over the years while being run as a hobby - to a regular monthly audience ...
AddThis

Related discussion

Related podcasts

  • Christian Beauclair

    14 mai 2008 (�mission #0074) ::.Christian Beauclair: Stratégies de migration VB6 vers .NET Nous discutons avec Christian Beauclair des stratégies de migration VB6 vers .NET. Entre autres, nous discutons comment utiliser le "VB 6 Code Advisor" et le "Interop Forms Toolkit" pour ajouter la puiss...

Want to stay in touch with what's going on? Follow us on twitter!