DataGridView Control

  • Thread starter Thread starter dm1608
  • Start date Start date
D

dm1608

Can someone show me how to delete all the items within my gridviewcontrol so
I can repopulate with new data?

Thanks
 
Are you referring to the standard Datagrid?? If so, then you would use <name
of your dataset>.clear()
ex: dsDataset1.clear()
 
This is (can be) done 'automatically" by DataGridView - take a good look at
all available properties of this control.
 
Back
Top