Hello,
I would like to save that i made in the datagrid view to the database.
datasource of the datagridview is named "NprofileBindingSource1"
How can i save the changes?
Thanks
Printable View
Hello,
I would like to save that i made in the datagrid view to the database.
datasource of the datagridview is named "NprofileBindingSource1"
How can i save the changes?
Thanks
What's bound to the BindingSource? A DataTable? If so then you use the same DataAdapter or TableAdapter you used to populate it in the first place. Just call Update instead of Fill.