// Validate the fieldsif (!isValidData()){MessageBox.Show("All fields are required, please try again");}else{residenceMasterTableAdapter.Update(communityDataSet.ResidenceMaster);residenceMasterTableAdapter.Update(communityDataSet);// Close the form reshow the frmListUnitsthis.Close();// Open up the list units formfrmListUnits myForm = new frmListUnits();myForm.Show();}