I have this DataGridView
| 1 | Beef1 | Drink1 |
| 2 | Beef2 | Drink2 |
| 3 | Beef3 | Drink3 |
But now I want it to become like this by hiding "Beef3":
| 1 | Beef1 | Drink1 |
| 2 | Beef2 | Drink2 |
| 3 | Drink3 |
I'm only aware of how to hide row and columns which is
- dataGridView1.Columns[Index].Visible = false;
- dataGridView1.Rows[Index].Visible = false;
Bhuban MagarPosted Aug 5, 2019, 7:07 AM
Jenith ThakkarPosted Jul 11, 2019, 5:40 AM
Munish KumarPosted Jul 11, 2019, 4:42 AM