G
Guest
I have
CM = BindingContext(DsModCont, "CONTACT"
I added a new row to "CONTACT"
Dim NewRow As DataRow = DsModCont.Tables("CONTACT").NewRo
CM.SuspendBinding(
DsModCont.Tables("CONTACT").Rows.Add(NewRow
CM.ResumeBinding(
But now even if the BindingContext(DsModCont, "CONTACT").Position is pointing to the new row, it's data is not being retrieved to my textboxes but only for the "old" rows
The only thing that works it to run a da.Update(DsModCont) and da.Fill(DsModCont)
Why ? and How do I fix
Thanks
Ori
CM = BindingContext(DsModCont, "CONTACT"
I added a new row to "CONTACT"
Dim NewRow As DataRow = DsModCont.Tables("CONTACT").NewRo
CM.SuspendBinding(
DsModCont.Tables("CONTACT").Rows.Add(NewRow
CM.ResumeBinding(
But now even if the BindingContext(DsModCont, "CONTACT").Position is pointing to the new row, it's data is not being retrieved to my textboxes but only for the "old" rows
The only thing that works it to run a da.Update(DsModCont) and da.Fill(DsModCont)
Why ? and How do I fix
Thanks
Ori