Created
May 18, 2018 04:42
-
-
Save longtth/13e7c04775a8300aff39a4202b6d390e to your computer and use it in GitHub Desktop.
DataGridView filter
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
DataView dv; | |
dv = new DataView(ds.Tables[0], "type = 'business' ", "type Desc", DataViewRowState.CurrentRows); | |
dataGridView1.DataSource = dv; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment