In VB 6 I was able to 'suspend' the update of the display in the grid when I populated it in code (row-by-row, not with DataSource) by something like:
[tt]
MSHFlexGrid1.Redraw = False[green]
'Do my magic here[/green]
MSHFlexGrid1.Redraw = True
[/tt]
Is there something similar to it in DataGridView?
Have fun.
---- Andy