Add, remove and clear list box items : ListBox « GUI « VB.Net Tutorial






Add, remove and clear list box items
Imports System.Windows.Forms

public class AddClearListBoxDelete
   public Shared Sub Main
        Application.Run(New FrmListBox)
   End Sub
End class


Public Class FrmListBox
   Inherits Form

#Region " Windows Form Designer generated code "

   Public Sub New()
      MyBase.New()

      'This call is required by the Windows Form Designer.
      InitializeComponent()

      'Add any initialization after the InitializeComponent() call

   End Sub

   'Form overrides dispose to clean up the component list.
   Protected Overloads Overrides Sub Dispose(ByVal disposing As Boolean)
      If disposing Then
         If Not (components Is Nothing) Then
            components.Dispose()
         End If
      End If
      MyBase.Dispose(disposing)
   End Sub

   ' contains user-input list of elements
   Friend WithEvents lstDisplay As ListBox

   ' user input textbox
   Friend WithEvents txtInput As TextBox

   ' add, remove, clear and exit command buttons
   Friend WithEvents cmdAdd As Button
   Friend WithEvents cmdRemove As Button
   Friend WithEvents cmdClear As Button
   Friend WithEvents cmdExit As Button

   'Required by the Windows Form Designer
   Private components As System.ComponentModel.Container

   'NOTE: The following procedure is required by the Windows Form Designer
   'It can be modified using the Windows Form Designer.  
   'Do not modify it using the code editor.
   <System.Diagnostics.DebuggerStepThrough()> Private Sub InitializeComponent()
      Me.cmdClear = New System.Windows.Forms.Button()
      Me.cmdExit = New System.Windows.Forms.Button()
      Me.cmdAdd = New System.Windows.Forms.Button()
      Me.txtInput = New System.Windows.Forms.TextBox()
      Me.cmdRemove = New System.Windows.Forms.Button()
      Me.lstDisplay = New System.Windows.Forms.ListBox()
      Me.SuspendLayout()
      '
      'cmdClear
      '
      Me.cmdClear.Location = New System.Drawing.Point(160, 144)
      Me.cmdClear.Name = "cmdClear"
      Me.cmdClear.Size = New System.Drawing.Size(104, 40)
      Me.cmdClear.TabIndex = 4
      Me.cmdClear.Text = "Clear"
      '
      'cmdExit
      '
      Me.cmdExit.Location = New System.Drawing.Point(160, 192)
      Me.cmdExit.Name = "cmdExit"
      Me.cmdExit.Size = New System.Drawing.Size(104, 40)
      Me.cmdExit.TabIndex = 5
      Me.cmdExit.Text = "Exit"
      '
      'cmdAdd
      '
      Me.cmdAdd.Location = New System.Drawing.Point(160, 48)
      Me.cmdAdd.Name = "cmdAdd"
      Me.cmdAdd.Size = New System.Drawing.Size(104, 40)
      Me.cmdAdd.TabIndex = 2
      Me.cmdAdd.Text = "Add"
      '
      'txtInput
      '
      Me.txtInput.Location = New System.Drawing.Point(160, 8)
      Me.txtInput.Name = "txtInput"
      Me.txtInput.Size = New System.Drawing.Size(104, 20)
      Me.txtInput.TabIndex = 1
      Me.txtInput.Text = ""
      '
      'cmdRemove
      '
      Me.cmdRemove.Location = New System.Drawing.Point(160, 96)
      Me.cmdRemove.Name = "cmdRemove"
      Me.cmdRemove.Size = New System.Drawing.Size(104, 40)
      Me.cmdRemove.TabIndex = 3
      Me.cmdRemove.Text = "Remove"
      '
      'lstDisplay
      '
      Me.lstDisplay.Location = New System.Drawing.Point(16, 8)
      Me.lstDisplay.Name = "lstDisplay"
      Me.lstDisplay.Size = New System.Drawing.Size(120, 238)
      Me.lstDisplay.TabIndex = 0
      '
      'FrmListBox
      '
      Me.AutoScaleBaseSize = New System.Drawing.Size(5, 13)
      Me.ClientSize = New System.Drawing.Size(292, 273)
      Me.Controls.AddRange(New System.Windows.Forms.Control() {Me.cmdExit, Me.cmdClear, Me.cmdRemove, Me.cmdAdd, Me.txtInput, Me.lstDisplay})
      Me.Name = "FrmListBox"
      Me.Text = "ListBoxTest"
      Me.ResumeLayout(False)

   End Sub

#End Region

   Private Sub cmdAdd_Click(ByVal sender As System.Object, _
      ByVal e As System.EventArgs) Handles cmdAdd.Click

      lstDisplay.Items.Add(txtInput.Text)
      txtInput.Text = ""
   End Sub 

   Private Sub cmdRemove_Click(ByVal sender As System.Object, _
      ByVal e As System.EventArgs) Handles cmdRemove.Click

      If lstDisplay.SelectedIndex <> -1 Then
         lstDisplay.Items.RemoveAt(lstDisplay.SelectedIndex)
      End If

   End Sub 

   Private Sub cmdClear_Click(ByVal sender As System.Object, _
      ByVal e As System.EventArgs) Handles cmdClear.Click

      lstDisplay.Items.Clear()
   End Sub 

   Private Sub cmdExit_Click(ByVal sender As System.Object, _
      ByVal e As System.EventArgs) Handles cmdExit.Click

      Application.Exit()
   End Sub

End Class








14.13.ListBox
14.13.1.Add value to ListBoxAdd value to ListBox
14.13.2.Add, remove and clear list box itemsAdd, remove and clear list box items
14.13.3.Use popup menu to add and delete ListBox itemUse popup menu to add and delete ListBox item
14.13.4.ListBox selection eventListBox selection event
14.13.5.Multiple SelectionsMultiple Selections
14.13.6.Get selected Items in a ListBoxGet selected Items in a ListBox
14.13.7.Set selected item in a ListBoxSet selected item in a ListBox
14.13.8.Get selected indices in a ListBox
14.13.9.Get selected item in a ListBox selection eventGet selected item in a ListBox selection event
14.13.10.Owner draw ListBoxOwner draw ListBox
14.13.11.Owner draw ListBox fixedOwner draw ListBox fixed
14.13.12.ListBox double click eventListBox double click event
14.13.13.MultiColumn ListBoxMultiColumn ListBox
14.13.14.Get mouse over index by mouse locationGet mouse over index by mouse location