G
Guest
I have a problem i donr seem to be able to find a soloution to
i have created a dataset, binded the controls to it, set primary keys
managed to set up navigation through the table
and even search for a value and move to that record. I have now come to an
abrupt halt with something i thought would be simple ..
updating records.
I have tried using the Client_RS.HasChanges(DataRowState.Modified) function
( Client_Rs being my Dataset )
but im not getting the expected result.
If make changes in the strCompanyName textbox, and check to see if the
Client_RS.HasChanges is true it isnt its still false, however if i move to
the next row and back again then the Client_RS.HasChanges is true. How can i
get tha Client_RS.HasChanges to return true as soon as the data is entered ?
' Binding Method
' Company Name
strCompanyName.DataBindings.Add(New Binding("Text", Client_RS,
"TBL_ClientAdmin.CompanyName"))
any ideas please
i have created a dataset, binded the controls to it, set primary keys
managed to set up navigation through the table
and even search for a value and move to that record. I have now come to an
abrupt halt with something i thought would be simple ..
updating records.
I have tried using the Client_RS.HasChanges(DataRowState.Modified) function
( Client_Rs being my Dataset )
but im not getting the expected result.
If make changes in the strCompanyName textbox, and check to see if the
Client_RS.HasChanges is true it isnt its still false, however if i move to
the next row and back again then the Client_RS.HasChanges is true. How can i
get tha Client_RS.HasChanges to return true as soon as the data is entered ?
' Binding Method
' Company Name
strCompanyName.DataBindings.Add(New Binding("Text", Client_RS,
"TBL_ClientAdmin.CompanyName"))
any ideas please