Jay59
Member
- Joined
- Mar 12, 2008
- Messages
- 5
- Programming Experience
- Beginner
Private Sub TechsBindingNavigatorSaveItem_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles TechsBindingNavigatorSaveItem.Click
Try
Me.Validate()
Me.TechsBindingSource.EndEdit()
Me.TechsTableAdapter.Update(Me.QC_DatabaseDataSet.Techs)
MsgBox("Update successful")
Catch ex As Exception
MsgBox("Update Failed")
End Try
End Sub
I created the datasource and dragged it to a form.
When I hit save, I get the Update successful, but no data is in the database.
I'm sure its something simple, but I'm still learning.
TIA