browntowel
02-17-2004, 11:57 AM
I have an access database with a text and a yes/no checkbox field. I've bound a listbox to the text field in the database like this:
lstPerson.DataSource = dsContact1.Tables("tblContact")
lstPerson.DisplayMember = "Person"
The checkbox I bound to the database through the checkbox's properties.
How can I get the checkbox to display the appropriate checked/unchecked value for the row depending on the selected item in the listbox?
lstPerson.DataSource = dsContact1.Tables("tblContact")
lstPerson.DisplayMember = "Person"
The checkbox I bound to the database through the checkbox's properties.
How can I get the checkbox to display the appropriate checked/unchecked value for the row depending on the selected item in the listbox?