0

How to refresh the data grid view in windows form in a smart device that i am using, Cipher Lab 30 .

I already have used datagridview.Refresh() , and datagridview.Update() after i deleted or insert some rows in data grid view. Nothing happens. But the SQL Works

Dalyun
  • 5
  • 1

1 Answers1

0

If you are setting a DataSource you can use Gridview.Databind(); to rebind the source

Or you can use DataGridView.Invalidate()

Minijack
  • 726
  • 7
  • 23