Reputation: 3051
I have 10000 rows in my datagridview,now when i edit one of the rows,i should refresh all the rows with select stored procedure that i wrote.
How do you suggest to me to refresh(select) just that edited row?
Upvotes: 0
Views: 1594
Reputation: 4327
Since you already added the new values, it might not be needed to refresh your whole grid, only refresh it when you need another record, or update that row and get the index and reload only that row using the index that you already have
Upvotes: 1