
Imports System.ComponentModelPublic Class Form1 Dim ds As New DataSet Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load Dim connectionString As String = "Data Source=. In the above vb.net code, datagridview is filter the column Type and the column value is Business. You can sort data while fetching it from database using order by clause in SQL statement or you can use the following method.ĭv = New DataView(ds.Tables(0), "type = 'business' ", "type Desc", DataViewRowState.CurrentRows) You can use different methods to filter datagridview column.


In the above vb.net code, datagridview sort the title column. You can sort the data in ascending or descending order based on the contents of the specified column of sort() method.ĭataGridView1.Sort(DataGridView1.Columns(1), ListSortDirection.Ascending) The DataGridView control in VB.Net provides automatic sorting, so that you can sort any column in the datagridview control. The following vb.net program shows how to filter and sort a DataGridView by using a DataView Object. A DataView provides a means to filter and sort data within a DataTable.

You can extend the DataGridView control in a number of ways to build custom behaviors into your applications. The DataGridView control provides a customizable table for displaying data.
