How to stop synchronization of datagridview and datatable ?
Posted
by Harikrishna
on Stack Overflow
See other posts from Stack Overflow
or by Harikrishna
Published on 2010-05-04T12:00:14Z
Indexed on
2010/05/04
12:08 UTC
Read the original article
Hit count: 413
I am using datagridview to display the records in datatable.
datagridView1.DataSource = datatable.DefaultView;
Now problem is when table changes datagridview automatically changes its output according to datatable what I don't want.I don't want synchronization of datagridview and datatable.How can I do that ?
© Stack Overflow or respective owner