I have a DataGridView binded to a DataTable (DataTable binded to database). I need to add a DataRow to the DataTable
DataGridView
DataTable
DataRow
try table.Rows.add(row); after your for statement.
table.Rows.add(row);
for