I know that there are lots of articles about this matter. But non of them wprked for me.
I have 2 datagridviews and using 2 different binding sources. I want to copy data from first one to second. I have tried lots of ways. Some of them do nothing and some of them just copied Column types and Header texts, but did not copied data.
How can i copy them?
*I can copy everything, except data with these codes;
for (int j = 0; j < this.dgv1.Columns.Count; j++)
{
this.dgv2.Columns.Add(this.dgv1.Columns[j].Clone() as DataGridViewColumn);
}