disable redraw of datagridview
i have the following problem with the datagridview:
from time to time I clear the content of the datagridview and I add all the new entries. when I do that I use also the
DataGridView.Rows.Add(object[]) method. and for the returned raw I set the
Tag value.
But now is the problem after adding the row and before setting the tag value I receive the SelectionChanged event, which uses the tag value.
How I can solve that?
Regards
Hansjrg

