Show DataGridView when you click the Save Input Data button
But do not show other records in the database
is it possible ??
Thanks
Printable View
Show DataGridView when you click the Save Input Data button
But do not show other records in the database
is it possible ??
Thanks
That doesn't actually make sense. Please provide a FULL and CLEAR description of the problem. Assume that too many words is better than not enough.
As some general advice, a DataGridView is only going to display the items in is data source so if you don't want it to display some of the records in your database then don't add them to, or remove them from, your data source. If that's not practical, you can bind a DataTable to the grid via a BindingSource and set the Filter of that to exclude certain rows.