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

Home
VB.Net Tutorial
1.Language Basics
2.Data Type
3.Operator
4.Statements
5.Date Time
6.Class Module
7.Development
8.Collections
9.Generics
10.Attributes
11.Event
12.LINQ
13.Stream File
14.GUI
15.GUI Applications
16.Windows Presentation Foundation
17.2D Graphics
18.I18N Internationlization
19.Reflection
20.Regular Expressions
21.Security
22.Socket Network
23.Thread
24.Windows
25.XML
26.Database ADO.net
27.Design Patterns
VB.Net
VB.Net by API
VB.Net Tutorial » GUI » ListBox 
14.13.2.Add, remove and clear list box items
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 NothingThen
            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(160144)
      Me.cmdClear.Name = "cmdClear"
      Me.cmdClear.Size = New System.Drawing.Size(10440)
      Me.cmdClear.TabIndex = 4
      Me.cmdClear.Text = "Clear"
      '
      'cmdExit
      '
      Me.cmdExit.Location = New System.Drawing.Point(160192)
      Me.cmdExit.Name = "cmdExit"
      Me.cmdExit.Size = New System.Drawing.Size(10440)
      Me.cmdExit.TabIndex = 5
      Me.cmdExit.Text = "Exit"
      '
      'cmdAdd
      '
      Me.cmdAdd.Location = New System.Drawing.Point(16048)
      Me.cmdAdd.Name = "cmdAdd"
      Me.cmdAdd.Size = New System.Drawing.Size(10440)
      Me.cmdAdd.TabIndex = 2
      Me.cmdAdd.Text = "Add"
      '
      'txtInput
      '
      Me.txtInput.Location = New System.Drawing.Point(1608)
      Me.txtInput.Name = "txtInput"
      Me.txtInput.Size = New System.Drawing.Size(10420)
      Me.txtInput.TabIndex = 1
      Me.txtInput.Text = ""
      '
      'cmdRemove
      '
      Me.cmdRemove.Location = New System.Drawing.Point(16096)
      Me.cmdRemove.Name = "cmdRemove"
      Me.cmdRemove.Size = New System.Drawing.Size(10440)
      Me.cmdRemove.TabIndex = 3
      Me.cmdRemove.Text = "Remove"
      '
      'lstDisplay
      '
      Me.lstDisplay.Location = New System.Drawing.Point(168)
      Me.lstDisplay.Name = "lstDisplay"
      Me.lstDisplay.Size = New System.Drawing.Size(120238)
      Me.lstDisplay.TabIndex = 0
      '
      'FrmListBox
      '
      Me.AutoScaleBaseSize = New System.Drawing.Size(513)
      Me.ClientSize = New System.Drawing.Size(292273)
      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.EventArgsHandles cmdAdd.Click

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

   Private Sub cmdRemove_Click(ByVal sender As System.Object, _
      ByVal e As System.EventArgsHandles cmdRemove.Click

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

   End Sub 

   Private Sub cmdClear_Click(ByVal sender As System.Object, _
      ByVal e As System.EventArgsHandles cmdClear.Click

      lstDisplay.Items.Clear()
   End Sub 

   Private Sub cmdExit_Click(ByVal sender As System.Object, _
      ByVal e As System.EventArgsHandles 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
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.