ListViewItem.SubItems.Add : ListViewItem « System.Windows.Forms « VB.Net by API

Home
VB.Net by API
1.Microsoft.VisualBasic
2.Microsoft.Win32
3.System
4.System.Collections
5.System.Collections.Generic
6.System.Collections.Specialized
7.System.ComponentModel
8.System.Configuration.ConfigurationSettings
9.System.Data
10.System.Data.Odbc
11.System.Data.OleDb
12.System.Data.OracleClient
13.System.Data.SqlClient
14.System.Diagnostics
15.System.Drawing
16.System.Drawing.Drawing2D
17.System.Drawing.Imaging
18.System.Drawing.Printing
19.System.Drawing.Text
20.System.Globalization
21.System.IO
22.System.IO.IsolatedStorage
23.System.IO.Ports
24.System.Media
25.System.Messaging
26.System.Net
27.System.Net.Sockets
28.System.Reflection
29.System.Runtime.InteropServices
30.System.Runtime.Remoting.Channels
31.System.Runtime.Serialization
32.System.Runtime.Serialization.Formatters.Binary
33.System.Runtime.Serialization.Formatters.Soap
34.System.Security.Cryptography
35.System.Security.Cryptography.X509Certificates
36.System.Security.Permissions
37.System.Security.Principal
38.System.ServiceProcess
39.System.Text
40.System.Text.RegularExpressions
41.System.Threading
42.System.Web
43.System.Web.Mail
44.System.Windows.Forms
45.System.Xml
46.System.Xml.Schema
47.System.Xml.Serialization
48.System.Xml.Xsl
VB.Net
VB.Net Tutorial
VB.Net by API » System.Windows.Forms » ListViewItem 
ListViewItem.SubItems.Add
  


Imports System.Drawing
Imports System.Drawing.Drawing2D
Imports System.Windows.Forms

public class ListViewIllustration
   public Shared Sub Main
        Application.Run(New Form1)
   End Sub
End class
Public Class Form1
    Private Sub btnPopulate_Click(ByVal sender As System.Object, ByVal e As System.EventArgsHandles btnPopulate.Click
        Dim intWidth As Integer
        Dim objItem As ListViewItem

        'Set the default view.
        ListView1.View = View.Details
        optDetails.Checked = True

        'Add the column headers.
        intWidth = ListView1.Width - 5
        ListView1.Columns.Add("Name", CInt(intWidth / 4))
        ListView1.Columns.Add("Address", CInt(intWidth / 4))
        ListView1.Columns.Add("Phone", CInt(intWidth / 4))
        ListView1.Columns.Add("FAX", CInt(intWidth / 4))

        'Add some list view items.
        objItem = ListView1.Items.Add("AAAAA")
        With objItem
            .SubItems.Add("123 Main St.")
            .SubItems.Add("555-555-5555")
            .SubItems.Add("555-555-5555")
            .ImageIndex = 0
        End With

        objItem = ListView1.Items.Add("BBBBB")
        With objItem
            .SubItems.Add("456 Main St.")
            .SubItems.Add("555-555-5555")
            .SubItems.Add("555-555-5555")
            .ImageIndex = 0
        End With

    End Sub

    Private Sub btnAdd_Click(ByVal sender As System.Object, ByVal e As System.EventArgsHandles btnAdd.Click

        Dim strItemText As String
        Dim objItem As ListViewItem

        'Add some list view items.
        strItemText = "name:"
        objItem = ListView1.Items.Add(strItemText)
        With objItem
            .SubItems.Add("123 Some St.")
            .SubItems.Add("555-555-5555")
            .SubItems.Add("555-555-5555")
            .ImageIndex = 0
        End With

    End Sub

    Private Sub btnClear_Click(ByVal sender As System.Object, ByVal e As System.EventArgsHandles btnClear.Click
        ListView1.Items.Clear()
    End Sub
    
    Private Sub btnRemove_Click(ByVal sender As System.Object, ByVal e As System.EventArgsHandles btnRemove.Click

        Dim objListItem As ListViewItem

        For Each objListItem In ListView1.SelectedItems
            objListItem.Remove()
        Next objListItem

    End Sub

    Private Sub btnDisplayItem_Click(ByVal sender As System.Object, ByVal e As System.EventArgsHandles btnDisplayItem.Click

        Dim strMessage As String
        Dim objListItem As ListViewItem

        If ListView1.SelectedItems.Count > Then
            objListItem = ListView1.SelectedItems(0)
            With objListItem
                strMessage = "NAME: " & .Text & vbCrLf & _
                             "ADDRESS: " & .SubItems(1).Text & vbCrLf & _
                             "PHONE: " & .SubItems(2).Text & vbCrLf & _
                             "FAX: " & .SubItems(3).Text
            End With
            MsgBox(strMessage)
        End If

    End Sub
   
    Private Sub optLargeIcon_CheckedChanged(ByVal sender As System.Object, ByVal e As System.EventArgsHandles optLargeIcon.CheckedChanged
        ListView1.View = View.LargeIcon
    End Sub

    Private Sub optSmallIcon_CheckedChanged(ByVal sender As System.Object, ByVal e As System.EventArgsHandles optSmallIcon.CheckedChanged
        ListView1.View = View.SmallIcon
    End Sub

    Private Sub optList_CheckedChanged(ByVal sender As System.Object, ByVal e As System.EventArgsHandles optList.CheckedChanged
        ListView1.View = View.List
    End Sub

    Private Sub optTile_CheckedChanged(ByVal sender As System.Object, ByVal e As System.EventArgsHandles optTile.CheckedChanged
        ListView1.View = View.Tile
    End Sub

    Private Sub optDetails_CheckedChanged(ByVal sender As System.Object, ByVal e As System.EventArgsHandles optDetails.CheckedChanged
        ListView1.View = View.Details
    End Sub

End Class
Partial Public Class Form1
    Inherits System.Windows.Forms.Form

    <System.Diagnostics.DebuggerNonUserCode()> _
    Public Sub New()
        MyBase.New()

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

    End Sub

    'Form overrides dispose to clean up the component list.
    <System.Diagnostics.DebuggerNonUserCode()> _
    Protected Overloads Overrides Sub Dispose(ByVal disposing As Boolean)
        If disposing AndAlso components IsNot Nothing Then
            components.Dispose()
        End If
        MyBase.Dispose(disposing)
    End Sub

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

    '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.components = New System.ComponentModel.Container
        Me.ListView1 = New System.Windows.Forms.ListView
        Me.btnPopulate = New System.Windows.Forms.Button
        Me.GroupBox1 = New System.Windows.Forms.GroupBox
        Me.optDetails = New System.Windows.Forms.RadioButton
        Me.optTile = New System.Windows.Forms.RadioButton
        Me.optList = New System.Windows.Forms.RadioButton
        Me.optSmallIcon = New System.Windows.Forms.RadioButton
        Me.optLargeIcon = New System.Windows.Forms.RadioButton
        Me.btnAdd = New System.Windows.Forms.Button
        Me.btnRemove = New System.Windows.Forms.Button
        Me.btnClear = New System.Windows.Forms.Button
        Me.btnDisplayItem = New System.Windows.Forms.Button
        Me.GroupBox1.SuspendLayout()
        Me.SuspendLayout()
        '
        'ListView1
        '
        Me.ListView1.FullRowSelect = True
        Me.ListView1.Location = New System.Drawing.Point(1718)
        Me.ListView1.Name = "ListView1"
        Me.ListView1.Size = New System.Drawing.Size(342364)
        Me.ListView1.TabIndex = 0
        Me.ListView1.UseCompatibleStateImageBehavior = False
        '
        'btnPopulate
        '
        Me.btnPopulate.Location = New System.Drawing.Point(366239)
        Me.btnPopulate.Name = "btnPopulate"
        Me.btnPopulate.Size = New System.Drawing.Size(16123)
        Me.btnPopulate.TabIndex = 2
        Me.btnPopulate.Text = "Populate"
        '
        'GroupBox1
        '
        Me.GroupBox1.Controls.Add(Me.optDetails)
        Me.GroupBox1.Controls.Add(Me.optTile)
        Me.GroupBox1.Controls.Add(Me.optList)
        Me.GroupBox1.Controls.Add(Me.optSmallIcon)
        Me.GroupBox1.Controls.Add(Me.optLargeIcon)
        Me.GroupBox1.Location = New System.Drawing.Point(37013)
        Me.GroupBox1.Name = "GroupBox1"
        Me.GroupBox1.Size = New System.Drawing.Size(156166)
        Me.GroupBox1.TabIndex = 1
        Me.GroupBox1.TabStop = False
        Me.GroupBox1.Text = "Views"
        '
        'optDetails
        '
        Me.optDetails.AutoSize = True
        Me.optDetails.Location = New System.Drawing.Point(30126)
        Me.optDetails.Name = "optDetails"
        Me.optDetails.Size = New System.Drawing.Size(5717)
        Me.optDetails.TabIndex = 4
        Me.optDetails.Text = "Details"
        '
        'optTile
        '
        Me.optTile.AutoSize = True
        Me.optTile.Location = New System.Drawing.Point(30102)
        Me.optTile.Name = "optTile"
        Me.optTile.Size = New System.Drawing.Size(4217)
        Me.optTile.TabIndex = 3
        Me.optTile.Text = "Tile"
        '
        'optList
        '
        Me.optList.AutoSize = True
        Me.optList.Location = New System.Drawing.Point(3078)
        Me.optList.Name = "optList"
        Me.optList.Size = New System.Drawing.Size(4117)
        Me.optList.TabIndex = 2
        Me.optList.Text = "List"
        '
        'optSmallIcon
        '
        Me.optSmallIcon.AutoSize = True
        Me.optSmallIcon.Location = New System.Drawing.Point(3054)
        Me.optSmallIcon.Name = "optSmallIcon"
        Me.optSmallIcon.Size = New System.Drawing.Size(7917)
        Me.optSmallIcon.TabIndex = 1
        Me.optSmallIcon.Text = "Small Icons"
        '
        'optLargeIcon
        '
        Me.optLargeIcon.AutoSize = True
        Me.optLargeIcon.Location = New System.Drawing.Point(3030)
        Me.optLargeIcon.Name = "optLargeIcon"
        Me.optLargeIcon.Size = New System.Drawing.Size(8117)
        Me.optLargeIcon.TabIndex = 0
        Me.optLargeIcon.Text = "Large Icons"
        '
        'btnAdd
        '
        Me.btnAdd.Location = New System.Drawing.Point(365269)
        Me.btnAdd.Name = "btnAdd"
        Me.btnAdd.Size = New System.Drawing.Size(16123)
        Me.btnAdd.TabIndex = 3
        Me.btnAdd.Text = "Add"
        '
        'btnRemove
        '
        Me.btnRemove.Location = New System.Drawing.Point(366299)
        Me.btnRemove.Name = "btnRemove"
        Me.btnRemove.Size = New System.Drawing.Size(16123)
        Me.btnRemove.TabIndex = 4
        Me.btnRemove.Text = "Remove"
        '
        'btnClear
        '
        Me.btnClear.Location = New System.Drawing.Point(365329)
        Me.btnClear.Name = "btnClear"
        Me.btnClear.Size = New System.Drawing.Size(16123)
        Me.btnClear.TabIndex = 5
        Me.btnClear.Text = "Clear"
        '
        'btnDisplayItem
        '
        Me.btnDisplayItem.Location = New System.Drawing.Point(365359)
        Me.btnDisplayItem.Name = "btnDisplayItem"
        Me.btnDisplayItem.Size = New System.Drawing.Size(16123)
        Me.btnDisplayItem.TabIndex = 6
        Me.btnDisplayItem.Text = "Display Item"
        '
        'Form1
        '
        Me.AutoScaleBaseSize = New System.Drawing.Size(513)
        Me.ClientSize = New System.Drawing.Size(539394)
        Me.Controls.Add(Me.btnDisplayItem)
        Me.Controls.Add(Me.btnClear)
        Me.Controls.Add(Me.btnRemove)
        Me.Controls.Add(Me.btnAdd)
        Me.Controls.Add(Me.GroupBox1)
        Me.Controls.Add(Me.btnPopulate)
        Me.Controls.Add(Me.ListView1)
        Me.Name = "Form1"
        Me.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen
        Me.Text = "ListView"
        Me.GroupBox1.ResumeLayout(False)
        Me.GroupBox1.PerformLayout()
        Me.ResumeLayout(False)

    End Sub
    Friend WithEvents ListView1 As System.Windows.Forms.ListView
    Friend WithEvents btnPopulate As System.Windows.Forms.Button
    Friend WithEvents GroupBox1 As System.Windows.Forms.GroupBox
    Friend WithEvents optDetails As System.Windows.Forms.RadioButton
    Friend WithEvents optTile As System.Windows.Forms.RadioButton
    Friend WithEvents optList As System.Windows.Forms.RadioButton
    Friend WithEvents optSmallIcon As System.Windows.Forms.RadioButton
    Friend WithEvents optLargeIcon As System.Windows.Forms.RadioButton
    Friend WithEvents btnAdd As System.Windows.Forms.Button
    Friend WithEvents btnRemove As System.Windows.Forms.Button
    Friend WithEvents btnClear As System.Windows.Forms.Button
    Friend WithEvents btnDisplayItem As System.Windows.Forms.Button
    Friend WithEvents ImageList1 As System.Windows.Forms.ImageList

End Class

   
    
  
Related examples in the same category
1.ListViewItem.ImageIndex
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.