Datepicker Update- updates once and once only

  • Thread starter Thread starter Ivan Jericevich
  • Start date Start date
I

Ivan Jericevich

I have a form with Textboxes and 2 datepickers, on the update everything
updates to the database just fine bar the 2 Datepickers, they updated to
database once the first time only and won't change the new date settings in
the database although the textboxes new data is being captured.I have the
Databinding set in the Value property. Is there some property in the
Datepickers that I'm overlooking?
 
Ivan,

Are you sure that you use the endcurrentedit as it is version 1.x or endedit
as it is version 2.x.

The data has to push down into the datasources.

Cor
 
Hi Cor,
this is my code for the Update
Me.Validate()

Me.TenantsBindingSource.EndEdit()

Me.TenantsTableAdapter.Update(Me.Knysna2DataSet.Tenants)
 
Back
Top