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
I'm betting you just need to refresh the datagrid. Try this:
dataGridView1.Rows.Clear(); dataGridView1.Refresh();
If this works... you might want to rethink this part of your application.