I am trying to bind a checkbox to the bindingcollection. I am able to get it to work with a textbox but I cannot get it to work with a checkbox. I have been able to determine that the box is returning a -1 instead of 1. If it helps I have SP4 installed and I trying to access this through an Access DB. Here is what my code looks like:
Set clsSupport = New clsSupport
Set bc = New BindingCollection
Set bc.DataSource = clsSupport
bc.Add txtContact, "Text", "Contact"
bc.Add chkClose, "Caption", "Complete"
Any help would be appriciated,
Kevin
Set clsSupport = New clsSupport
Set bc = New BindingCollection
Set bc.DataSource = clsSupport
bc.Add txtContact, "Text", "Contact"
bc.Add chkClose, "Caption", "Complete"
Any help would be appriciated,
Kevin