I have a form with a DataGridView item that views a table from my databse. Another form adds a new row to that table and closes it self. In the first form, at the closing event of the second form, i want the first form to update/refresh/refill itself to the new data just added. I have tried this:
this.swimmersTableAdapter.Update(this.databaseDataSet1.swimmers);
And:
This.Update();
But unsuccessfully.
it does refresh it self when i stop debugging, and run it again, but ofcource it's not practical for the client/user.
any solutions ?