Click here to Skip to main content
15,896,547 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
I have 10000 rows in my datagridview,now when i insert,delete 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 row?
TIA
Posted
Updated 3-Jul-12 8:50am
v2

1 solution

As far as I know.....

Rows cannot be programmatically added to the DataGridView's rows collection when the control is data-bound.

Rows cannot be programmatically removed unless the DataGridView is data-bound to an IBindingList that supports change notification and allows deletion.
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900