VB2010: Form with checkbox
Access2010: Table with Checkbox
I have created a form in
VB that has a checkbox that I would like to use to update a field in a Access table. I've connected the database and have all the datasets and such but I am not sure what the code is to udpate the database for a checkbox. I've got all the textboxes updating the database I used the bindingnavigator for these but not sure what to use for the checkbox.
Private Sub OccupiedCheckBox_CheckedChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles OccupiedCheckBox.CheckedChanged
End Sub
Any direction on this matter would be most appreciated.