VB.NET: Clear DataGridView
I've tried - DataGridView1.DataSource=Nothing and DataGridView1.DataSource=Nothing DataGridView1.Refresh() and DataGridView1.RefreshEdit() None of them works.. I've written a method that sets the DataSource of the DataGridView when executed. but each time i execute it, it replicates the data with new value and appends it to the previous contents of the DGV.. I wanna clear the content and then add the values.. Is that possible? If the DataGridView is bound to any datasource, you'll have to set the DataGridView's DataSource property to Nothing . If the DataGridView is not bound to any data