Okay I have a bound datagrid and some bound text boxes like so.


VB Code:
  1. Me.txtmon.DataBindings.Add(New System.Windows.Forms.Binding("Text", ds, "employees.mon"))
  2.         Me.txttue.DataBindings.Add(New System.Windows.Forms.Binding("Text", ds, "employees.tue"))
  3.         Me.txtwed.DataBindings.Add(New System.Windows.Forms.Binding("Text", ds, "employees.wed"))
  4.         Me.txtthu.DataBindings.Add(New System.Windows.Forms.Binding("Text", ds, "employees.thur"))
  5.         Me.txtfri.DataBindings.Add(New System.Windows.Forms.Binding("Text", ds, "employees.fri"))
  6.         Me.txtwk.DataBindings.Add(New System.Windows.Forms.Binding("Text", ds, "employees.wk"))
  7.  
  8.  
  9.   Me.dgemployees.DataSource = ds
  10.         Me.dgemployees.DataMember = "Employees"

If I alter the datatable using the textboxes or the datagrid. The data in the datatable does change. My problem is when I call the update method like so

VB Code:
  1. daemployees.Update(ds, "Employees")

The data always updates back to the databse if I made the change in the datagrid, but it doesn't allways update if I used the textboxes.
V confused, any help would be great.