Search

VSTO ListView Sample

VSTO ListView Sample. More VSTO here - https://bit.ly/2X2RuE6

How to add and use Powerful ListView Control in Excel UserForm
VBA ListView(2) : https://www.youtube.com/watch?v=2TKdOsSzulg

Subscribe Now!
New videos every Weekend!


Like what I do? Donate
Did I help you? Did one of my tutorials save you sometime? 
You can say thank you by buying me a cup of coffee, I go through a lot of it.
Help keep Greater Good resources free for everyone. Please donate today. 




This page is not monitored so for questions please comment on the youtube video page. For suggestions email vbaa2z.team@gmail.com

VSTO .NET Example

    Dim MyListView As New ListView
    With MyListView
        .View = View.Details
        .FullRowSelect = True
        .Columns.Add("Period")
        .Columns.Add("Client")
        .Columns.Add("Amount")
    End With

    Me.Controls.Add(MyListView)
    MyListView.Dock = DockStyle.Fill

    MyListView.Items.Add(New ListViewItem({"Jul-2020", "VBA A2Z", 9.79}))

No comments:

Post a Comment

Note: only a member of this blog may post a comment.