I have a DataGridView binded to a DataTable (DataTable binded to database). I need to add a DataRow to the DataTable
DataGridView
DataTable
DataRow
If need to copy from another table then need to copy structure first:
DataTable copyDt = existentDt.Clone(); copyDt.ImportRow(existentDt.Rows[0]);