In order to initialize my VouchersDGV Data Grid View I\'m Using the following
DGV.AllowUserToDeleteRows = True For i = 1 To DGV.RowCount - 1 DGV.Rows.Remo
If your goal is to empty the row collection, you can just use the Clear method of the Rows collection:
DGV.Rows.Clear()
Hope this helps.