I have a form with a checkbox and am using a button with the following code:
strSQL = "INSERT INTO tempEmployees ([Completed]) Values('" & Me.cbxCompleted.Value & "')"
The problem is, when I type out Me.cbxCompleted.Value ... .Value is not an attribute of the list. So how can I capture the state of the checkbox with a strSQL statement?
strSQL = "INSERT INTO tempEmployees ([Completed]) Values('" & Me.cbxCompleted.Value & "')"
The problem is, when I type out Me.cbxCompleted.Value ... .Value is not an attribute of the list. So how can I capture the state of the checkbox with a strSQL statement?