Hello.
I have a datagrid with 9 columns. I want to add a one row from data table who is that same. I believs I can do it that:
DataGridViewRow drow = new DataGridViewRow();
foreach (DataRow wiersz in dTable2.Rows)
{
for (int i = 0; i <= ilosckolumn - 1; i++)
{
drow.Cells[i].Value = wiersz[i].ToString();
}
}
But its not working.
Any sugestions?