Slow Loop Execution In VB.NET 2003
I fill data in C1FLEXGR开发者_运维知识库ID
from DataTable
using for...each
loop with DataRow
and DataRowCollection
but it gives output very slow. How can I solve it.
Have you tried switching off drawing while adding the rows?
grid.redraw = False
// Add rows here
grid.redraw = True
精彩评论