chowchow123
Active member
- Joined
- Sep 6, 2007
- Messages
- 34
- Programming Experience
- 1-3
Hi
I have a series of tabbed forms with toolbar button and I've added a save button but I get errors
error:
'Update' is not a member of 'Myproject.myprojectDataSetTableAdapters.memberTableAdapter'.
error:
'Update' is not a member of 'System.Windows.Forms.BindingSource'
I have bound the toolbars to the correct bindingsource
I have a series of tabbed forms with toolbar button and I've added a save button but I get errors
VB.NET:
Private Sub MemberSave_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MemberSave.Click
Me.Validate()
Me.Mem_typeBindingSource.EndEdit()
Me.Mem_typeBindingSource.Update(Me.SandsdbDataSet.member)
End Sub
'Update' is not a member of 'Myproject.myprojectDataSetTableAdapters.memberTableAdapter'.
VB.NET:
Private Sub PaymentSave_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles PaymentSave.Click
Me.Validate()
Me.ChargesBindingSource.EndEdit()
Me.ChargesBindingSource.Update(Me.SandsdbDataSet.charges)
End Sub
'Update' is not a member of 'System.Windows.Forms.BindingSource'
I have bound the toolbars to the correct bindingsource