I have to copy a table row to a new row in the same table, but with a different key. Since I have seven of these tables, each with many fields, I don't want to do it one field at a time - not just because of the work, but also the maintainability. Is there a simple way to copy a row Even a "for each field (or column )" approach would be preferable to explicit code, but I don't know how to do that in this environment.
I'm using a Table Adapter and Binding Source for each table.

How can I copy an entire table row to the same table
PierreE
Craig Colomb
You might have to create another temporary datatable. then using datatable.importrow looping to import the particular row you need. And reassign the datatable to the dataset/binding source again.
Pure Krome
loureiro
If your 6 tables had the relationship with each other, you might have to concern and plan properly for copying row. It would be very complicated.
Just set the initial binding source of that control to nothing then, set it to the latest datatable will do.
uygar