Hello everyone, I'm having issues with a form that shows, within a DataGridView, all the orders within a Table, when I click on any line a new Form shows up and I edit the order. When I finish making the changes, even though I tried to update the DataGridView control, the order's total remains unchanged, so when I close the form and load it up again, that's when I see the new total. I debugged and found out the DataSet where the DataGridView is getting data from, is not updating so that's why I see the old total. How can I force the DataSet to update and get the whole Orders table again?

Thanks