Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chriss Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

BindingCollection and Checkbox

Status
Not open for further replies.

k9

Programmer
Joined
Oct 25, 2000
Messages
5
Location
US
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
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top