Hi Guys,
I am just stuck with a problem. I have 2 forms both linked to database tables, and I want one of the forms, form2.
vb, to be able to I load without data in the textboxes. However, I would want the textboxes on form2.
vb to accept NEW data or record and save them as well.Here is the BindingNavigatorSaveItem code:
Private Sub SABindingNavigatorSaveItem_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles SABindingNavigatorSaveItem.Click
'TODO: This line of code loads data into the 'SADataSet.SA' table. You can move, or remove it, as needed.
Me.SATableAdapter.Fill(Me.SADataSet.SA)
End Sub
How can I alter this code or any other thing to achieve this functionality? Thanks