Hi all.
I think this is simple but i can't figure it out.
datagridview1.datasource = dsCustomer.tables[0].
When user double-clicks in this datagridview i want to copy that row to a new datatable.
//Finding the row
DataGridViewRow dgvrow = customerDataGridView.Rows[rowIndex];
//Finding values in the row
DataRowView drvrow = (DataRowView)dgvrow.DataBoundItem;
// Create a new table with values from the drvrow
?????
Anyone ?
Thanks.
Lars E.