VB Project Source Code

Showing posts with label List View tutorial vb.net. Show all posts
Showing posts with label List View tutorial vb.net. Show all posts

Saturday 6 June 2015

List View tutorial vb.net

List View tutorial vb.net


Public Class Form1

    Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
        ListView1.Columns.Add("Colum A", 100, HorizontalAlignment.Left)
        ListView1.Columns.Add("Colum B", 100, HorizontalAlignment.Left)
        ListView1.Columns.Add("Colum C", 100, HorizontalAlignment.Left)

        Dim SingleItem As ListViewItem.....