goVikes
Can you show me the code for Form1 as well I think that is where we need to do the updating. If I understand your question correctly, you edit in Form2 and need it to update into Form1 without having to close and re-open Form1.
One other item that is not really a huge thing but you may want to change the ClientBindingNavigatorSaveItem_Click to the following:
Private Sub ClientBindingNavigatorSaveItem_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles ClientBindingNavigatorSaveItem.Click
Try
Me.Validate()
Me.ClientBindingSource.EndEdit()
Me.ClientTableAdapter.Update(Me.ProjectManagmentDataSet1.Client)
Me.SHIPSBindingSource.EndEdit()
Me.SHIPSTableAdapter.Update(Me.ProjectManagmentDataSet1.SHIPS)
Catch ex as Exception
MsgBox("Update Failed: " & ex.ToString)
End Try
End Sub
This will pop up a message box with an explanation as to why the database was not able to be updated if there is a problem updating the data.