Saving unbound datagridview

kinneyw

New member
Joined
Feb 17, 2006
Messages
1
Programming Experience
1-3
I have created an unbound datagridview to show data results from manipulation of data from a primary table. Is there a way to now save the data in the datagridview to a new table?

William
 
You are most likely going to loop through the rows of your datagrid and write the cell values to corresponding table field values and then add the new record one at a time.
 
Back
Top