Arash
Arash

Reputation: 3051

Edit Single Row And Refresh Just That Row In Datagridview

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

Answers (1)

JohnnBlade
JohnnBlade

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

Related Questions