Cricket
Active member
I keep getting this error when I try to add a new row to a DataSet.
"Additional information: DataBinding could not find a row in the list that is suitable for all bindings"
The particular error is being caused by bound CheckBoxes. I'm sure because if I comment them out everything works fine. These particular CheckBoxes are bound to Yes/No fields in an Access database.
Me.chkPermits.DataBindings.Add("Checked", Me.dsPO, "tblPO.CRPermits")
Me.chkPickUp.DataBindings.Add("Checked", Me.dsPO, "tblPO.CRPickUp")
Me.chkHotTubBase.DataBindings.Add("Checked", Me.dsPO, "tblPO.CRBase")
Me.chkDecking.DataBindings.Add("Checked", Me.dsPO, "tblPO.CRDecking")
Me.chkElectrical.DataBindings.Add("Checked", Me.dsPO, "tblPO.CRElectrical")
Me.chkProvideAssistants.DataBindings.Add("Checked", Me.dsPO, "tblPO.CRProvideAssistants")
Has anyone seen this error before? If so what causes it? Is there a secret to binding CheckBoxes?
"Additional information: DataBinding could not find a row in the list that is suitable for all bindings"
The particular error is being caused by bound CheckBoxes. I'm sure because if I comment them out everything works fine. These particular CheckBoxes are bound to Yes/No fields in an Access database.
Me.chkPermits.DataBindings.Add("Checked", Me.dsPO, "tblPO.CRPermits")
Me.chkPickUp.DataBindings.Add("Checked", Me.dsPO, "tblPO.CRPickUp")
Me.chkHotTubBase.DataBindings.Add("Checked", Me.dsPO, "tblPO.CRBase")
Me.chkDecking.DataBindings.Add("Checked", Me.dsPO, "tblPO.CRDecking")
Me.chkElectrical.DataBindings.Add("Checked", Me.dsPO, "tblPO.CRElectrical")
Me.chkProvideAssistants.DataBindings.Add("Checked", Me.dsPO, "tblPO.CRProvideAssistants")
Has anyone seen this error before? If so what causes it? Is there a secret to binding CheckBoxes?