Filling ListView Dynamically From any Data Sources with VB.NET | CodeGuru

Filling ListView Dynamically From any Data Sources with VB.NET

Filling ListView Dynamically from Any Data Sources with VB.NET When I was developing different front-end data entry modules for data entry operators, I found that it is very common in different modules to fill a listview according to given query strings, but I was designing a listview for each module from scratch. Then, I thought […]

Written By
CodeGuru Staff
CodeGuru Staff
Sep 9, 2004
2 minute read
CodeGuru content and product recommendations are editorially independent. We may make money when you click on links to our partners. Learn More

Filling ListView Dynamically from Any Data Sources with VB.NET

When I was developing different front-end data entry modules for data entry operators, I found that it is very common in different modules to fill a listview according to given query strings, but I was designing a listview for each module from scratch. Then, I thought to make a user control that just takes a connection and query strings and add columns to it dynamically and fills it in the data grid style. Thanks a lot, .NET user control features.

Then, I decided to modify this control and make it more simple, just to share an idea with you about how to fill the list view dynamically.

Let us consider some important parts of the code:

Dim c As DataColumn
For Each c In ds.Tables(0).Columns

   'adding names of columns as Listview columns
   Dim h As New ColumnHeader
   h.Text = c.ColumnName
   h.Width = Convert.ToInt32(Me.numericUpDown1.Value)
   Me.listView1.Columns.Add(h)
Next
Advertisement

The above-mentioned code takes each column name from the query and adds it as the Listview Columns headers.

Dim dt As DataTable = ds.Tables(0)
Dim str(Me.ds.Tables(0).Columns.Count)
'adding Datarows as listview Grids
Dim rr As DataRow
For Each rr In dt.Rows
   For col As Integer = 0 To Me.ds.Tables(0).Columns.Count - 1

      str(col) = rr(col).ToString()
   Next
   Dim ii As New ListViewItem(str)
   Me.listView1.Items.Add(ii)
   'showing the number of records still added
   Me.ShowStatus()

Next

The above-mentioned code is a very important part of the code. We declare an array string equal to the numbers of columns, and then we fill this array with the help of a counter loop. Use a foreach loop to ensure that each row has been filled. So, this basic ideas control was ready to serve me.

However, when I used it with complex queries—for example, those with 8 inner joins having more than 60,000 records—it hung and did not respond, so I had to restart my system.

Then, I decided to use my programming servants (threads) to share my burden after initializing a thread loaded with database querying Hurrah!! I was jubilant now because I did not have to restart my system and I could even see adding records to listView as smoothly as it was a simple query. Thanks, threads (my friends now).

'check if thread is allow to run
   If Me.runThread = True Then
      Dim t As New Thread(AddressOf Me.FillMethod)
      t.Start()
         End If

This is a very basic way to initialize a thread and pass it the reference of a method to be called.

So, be happy, and enjoy the code.

CodeGuru Logo

CodeGuru covers topics related to Microsoft-related software development, mobile development, database management, and web application programming. In addition to tutorials and how-tos that teach programmers how to code in Microsoft-related languages and frameworks like C# and .Net, we also publish articles on software development tools, the latest in developer news, and advice for project managers. Cloud services such as Microsoft Azure and database options including SQL Server and MSSQL are also frequently covered.

Property of TechnologyAdvice. © 2026 TechnologyAdvice. All Rights Reserved

Advertiser Disclosure: Some of the products that appear on this site are from companies from which TechnologyAdvice receives compensation. This compensation may impact how and where products appear on this site including, for example, the order in which they appear. TechnologyAdvice does not include all companies or all types of products available in the marketplace.