I've tried various things to get the datagrids to update. If I close the application and reload it then I see the changes to the database. If I do a transactions I don't see them until I reload it. This is where I currently left off.
bank_Account_DatabaseDataSet.GetChanges();
bank_Account_DatabaseDataSet.Savings.AcceptChanges();
this.savingsTableAdapter.Fill(this.bank_Account_DatabaseDataSet.Savings);
savDtGrdVw.Refresh();
savDtGrdVw.Update();
just on the savings because until I can get it to work for one grid, no sense of playing with the other. I also tried to run my closeDatabase and getDatabase() methods. That didn't work. I've included the whole application and the database in the zip.