Here comes the trouble. I want to delete all rows from datagridview. This how i add rows:
private void ReadCompleteCallback(object clientHandle, Opc.Da.ItemV
If your DataGridView does not have any DataSource the solution does not come by manipulating it.
DataGridView
DataSource
You will always have an empty row if you have the AllowUserToAddRows property set to true.
empty
AllowUserToAddRows
true
Put AllowUserToAddRows = false if you don't need permise this.
AllowUserToAddRows = false